Hi,
while editing the cell in the grid I want a calendar to come and it ia coming but when I select the value of that cell using
updaterow: function (rowid, rowdata, commit) {
// synchronize with the server – send update command
// call commit with parameter true if the synchronization with the server is successful
// and with parameter false if the synchronization failder.
$(“#InTimeline”).val(rowdata.Timeline);
$(“#txtEditingRecordID”).val(rowdata.ID);
ThirdPageSubmit(‘true’);
commit(true);
},
rowdata.Timeline is giving value as “Thu Mar 13 00:00:00 EDT 2014”
I want the value to come as “mm/dd/yyyy” In the data setting I am using following format.
{ text: ‘Timeline’, datafield: ‘Timeline’, columntype: ‘datetimeinput’, width: ‘7.5%’, align: ‘right’, cellsalign: ‘right’, cellsformat: ‘d’ },