I am trying to use the submitOnlyRowID function for my grid but when the submit goes through I get all of the row information instead. Can anyone see what’s wrong with my settings below:
jtgrid = new dhtmlXGridObject('jtgridbox');
jtgrid.selMultiRows = true;
jtgrid.setImagePath("/javascripts/dhtmlx/dhtmlxGrid/codebase/imgs/icons_books/");
jtgrid.setHeader(jt_list_header);
jtgrid.setInitWidths(jt_list_initwidths);
jtgrid.setColAlign(jt_list_colalign);
jtgrid.setColTypes(jt_list_coltypes);
jtgrid.setColSorting(jt_list_colsort);
jtgrid.enableDragAndDrop(true);
jtgrid.enableSmartXMLParsing(false);
jtgrid.enableMultiline(true);
jtgrid.submitOnlyChanged(true);
jtgrid.submitOnlyRowID(true);
jtgrid.init();
jtgrid.attachFooter("Total price,#cspan,-,<div id='nr_q'>0</div>,-,<div id='sr_q'></div>", ["text-align:left;"]);
jtgrid.setSkin("dhx_skyblue");