Jqgrid 问题,Jquery 的 datetimepicker 插件不起作用

发布于 2024-12-05 03:34:54 字数 1672 浏览 3 评论 0原文

我正在尝试使用这个 插件这正是我所需要的,但不幸的是不起作用,我已经被困在这个问题上几天了,我无法修复它,有人可以帮忙..?

这是插件时间选择器的 主页

...这是我的 javascript 代码...

colModel: [
           { name: 'Id', index: 'Id', width: 50 },
           { name: 'Entrada', index: 'Enlaces', width: 80, sortable: true, editable: true, edittype: "select", editoptions: { dataUrl: '/Entrada/Listado/'} },
           { name: 'FechaInicio', index: 'FechaInicio', width: 90, editable: true, edittype: "text", editoptions: {
                            dataInit: function (el) {
                                $(el).datepicker({ dateFormat: 'yy-mm-dd',
                                    onSelect: function (dateText, inst) {
                                        var $input = inst.input;
                                        var $row = $input.parents("tr");
                                        $("#list").jqGrid('saveRow', $row.attr("id"), false);
                                    }
                                });
                            }
                        }
                        },
           { name: 'HoraInicio', index: 'HoraInicio', width: 80, sortable: true, editable: true, edittype: "text", editoptions: {
                            dataInit: function (tm) {
                                $(tm).datetimepicker({ dateFormat: 'yy-mm-dd' });
                            }
                        }
                        }
                  ]

我将不胜感激任何帮助,提前致谢。

问候

I'm trying to use this addon which is just what I need, but unfortunately does not work, I've been stuck on this a few days and I can not fix it, someone could help ..?

Here is the home page of the addon timepicker

... and here is my javascript code ...

colModel: [
           { name: 'Id', index: 'Id', width: 50 },
           { name: 'Entrada', index: 'Enlaces', width: 80, sortable: true, editable: true, edittype: "select", editoptions: { dataUrl: '/Entrada/Listado/'} },
           { name: 'FechaInicio', index: 'FechaInicio', width: 90, editable: true, edittype: "text", editoptions: {
                            dataInit: function (el) {
                                $(el).datepicker({ dateFormat: 'yy-mm-dd',
                                    onSelect: function (dateText, inst) {
                                        var $input = inst.input;
                                        var $row = $input.parents("tr");
                                        $("#list").jqGrid('saveRow', $row.attr("id"), false);
                                    }
                                });
                            }
                        }
                        },
           { name: 'HoraInicio', index: 'HoraInicio', width: 80, sortable: true, editable: true, edittype: "text", editoptions: {
                            dataInit: function (tm) {
                                $(tm).datetimepicker({ dateFormat: 'yy-mm-dd' });
                            }
                        }
                        }
                  ]

I would appreciate any help, thanks in advance.

regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

零崎曲识 2024-12-12 03:34:54
    $(el).datetimepicker( {
                           changeMonth: true,
                           changeYear: true,
                           showSecond:true,
                           dateFormat:'yy-mm-dd',
                           timeFormat:'hh:mm:ss',
                           hourGrid: 4,
                           minuteGrid: 10,
                           secondGrid: 10,
                           addSliderAccess: true,
                           sliderAccessArgs: { touchonly: false }
     });
    $(el).datetimepicker( {
                           changeMonth: true,
                           changeYear: true,
                           showSecond:true,
                           dateFormat:'yy-mm-dd',
                           timeFormat:'hh:mm:ss',
                           hourGrid: 4,
                           minuteGrid: 10,
                           secondGrid: 10,
                           addSliderAccess: true,
                           sliderAccessArgs: { touchonly: false }
     });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文