Select all checkbox functionality in grid to process all the

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

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 dhtmlx.com/docs/products/dhtmlxG … t_htmlform