我使用下面的代码显示文本字段的datepicker。网格运作良好。当我单击添加按钮时,会出现“未定义”错误。请帮我解决这个问题。
{ name: 'FLD_PURCH_DATE', index: 'FLD_PURCH_DATE', width: 130, editable: true, edittype: "text", editrules: { required: true }, formoptions: { rowpos: 2, colpos: 2, elmprefix: " <span class='required'></span> " },
editoptions: { dataInit: function (element) { try { $(elem).datepicker(); // Error Here. } catch (ex) { alert(ex.Message);} } }
},
如果我添加最新的jquery url意味着网格消失了。
答案 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;}); }}