JQGrid日期选择器错误

时间:2014-04-29 05:11:27

标签: jquery jqgrid jqgrid-asp.net

我使用下面的代码显示文本字段的datepicker。网格运作良好。当我单击添加按钮时,会出现“未定义”错误。请帮我解决这个问题。

{ name: 'FLD_PURCH_DATE', index: 'FLD_PURCH_DATE', width: 130, editable: true, edittype: "text", editrules: { required: true }, formoptions: { rowpos: 2, colpos: 2, elmprefix: "&nbsp;&nbsp;<span class='required'></span>&nbsp;" },
                            editoptions: { dataInit: function (element) { try { $(elem).datepicker(); // Error Here. } catch (ex) { alert(ex.Message);} } }

                        },

如果我添加最新的jquery url意味着网格消失了。

1 个答案:

答案 0 :(得分:0)

我使用它来使用datepicker。

在我的代码中包含datepicker:

<script src="../../jquery.ui.datepicker-pt-BR.js" type="text/javascript"></script>

我的专栏日期中的editoption:

  

editoptions:{size:20,dataInit:function(el){   $(EL).datepicker({DATEFORMAT:&#39; DD / MM / YY&#39;}); }}