I have a dozen grids on one page. I'd like to use one JS function for 'load complete'. Is there a way to configure the object being passed into the function to include the grid identifier?
$e["js_on_load_complete"] = "grid_load";
$g->set_events($e);
function grid_load(id)
{
//the id object does not contain a grid identifier
}
1 Answers
Your Answer