Hi, I am trying to implement jqGrid in my form. The form has some extra element like textbox and dropdown. While submitting the form i have to store it into some variable to keep this for next page where i want to show the summary page and then commit the changes. But once i click "Continue" and on submission of the form i get the form element but not able to send the stringData along with that. Is there any way to do that(like the way we do it for date picker by assigning it to an id of an input box).
$("#btn_Continue").click(function(){ var idArr = new Array(); var objRowData = new Array(); // var stringData; idArr = jQuery("#list").getDataIDs(); for(var i=0;i<idArr.length;i++){ var cl = idArr[i]; objRowData = jQuery("#list").getRowData(cl); if(stringData == undefined) stringData = (objRowData ["checkin"]); else stringData = stringData + ':'+(objRowData ["checkin"]); }}); I dont want to post this data to the server and save it in a database instead i want to keep this info in some variable(along with form variable) to be processed in the next page where on committing i will save this to the db. Thanks and Regards, ~Sumit