Categories | Question details Back To List | ||
Select all checkbox functionality in grid to process all the rows Hi, I have requirement to select all rows in grid and post all data for processing, But It only sends the data which selected by Mouse click in checkbox. I wrote javascript for select all checkboxs, but it doesn't send all rows. Thanks Answer posted by dhxSupport on Jul 06, 2009 00:45 If you are using form integration extention you can use "Submit All Rows" mode. In such case you should use: grid.submitOnlyChanged(false); grid.submitOnlySelected(false); Please see more information about form integration extension here http://dhtmlx.com/docs/products/dhtmlxGrid/doc/articles/Form_integration.html#grid_art_htmlform |