Hi I\'m using jqGrid and I\'m wondering, how do I add jQueryUI\'s datepicker to some of the input fields when in the add row dialog?
Also how do I check if the input ent
You need to add this lines to the updateDialog or to the addDialog:
updateDialog
addDialog
afterShowForm: function (formId) { $("#CreationDate").datepicker(); }
Hope this helps.