Jqgrid 问题,Jquery 的 datetimepicker 插件不起作用
我正在尝试使用这个 插件这正是我所需要的,但不幸的是不起作用,我已经被困在这个问题上几天了,我无法修复它,有人可以帮忙..?
这是插件时间选择器的 主页
...这是我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)