Forum
Topic RSS
16:00
07/02/2011
OfflineI am finally able to get the DatePicker working in JQGrid. The only issue that I have is if the user selects a date and doesn't click on another cell before saving data, the date selected from the calendar is not set in the cell. If I do a getcell, the 'defination' of the cell is returned. If I click on another cell, then do a getcell, the date chosen is returned.
Is there a work around for this?
Jen
16:41
07/02/2011
OfflineGot it to work by doing this:
Declare these variables:
saverow=0;
savecol=0;
Then in the afterEditCell (fires before you select a date)
afterEditCell: function (id,name,val,iRow,iCol){
saverow = iRow;
savecol = iCol;
}
Then,
In my Save function, before I code anything, I do this to set the last entered cell:
jQuery(
'#permitList').jqGrid("saveCell",saverow,savecol);
jQuery(
'#permitList').jqGrid("saveCell",saverow,savecol);

Most Users Ever Online: 994
Currently Online:
14 Guest(s)
Currently Browsing this Page:
1 Guest(s)
Top Posters:
OlegK: 1255
markw65: 179
kobruleht: 144
phicarre: 132
YamilBracho: 124
Renso: 118
Member Stats:
Guest Posters: 447
Members: 11373
Moderators: 2
Admins: 1
Forum Stats:
Groups: 1
Forums: 8
Topics: 10592
Posts: 31289
Newest Members:
, razia, Prankie, psky, praveen neelam, greg.valainis@pa-tech.comModerators: tony: 7721, Rumen[Trirand]: 81
Administrators: admin: 66
Log In
Home