Hi Abu and community. I've everything working fine with my multiselect rows and footer with totals, but not when I click to select or unselect ALL rows on the header of the grid, because the rows turn select or unselect ok, but there is no action to calculate the total on the footer. Is there a event for that, as below, or other solution? It's kind of the same of the event on_load_complete, but with all rows marked or unmarked. The same problem happens at footer-row.php demo.
$e = array();
$e["on_data_display"] = array("pre_render","",true);
$e["js_on_select_row"] = "grid_onselect";
$e["js_on_load_complete"] = "grid_onload";
$g->set_events($e);
You need to connect onSelectAll event with same function.
$opt["onSelectAll"] = "function(id,status){ grid_onselect(); }";
$g->set_options($opt);
Demo code: http://hastebin.com/ohokezatac.php