You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to populate an OpenJS grip based on the value selected by the used on a drop down list. The calling script is time_data.php which extracts and populate the data. How can I achieve this ?
Hi,
I want to populate an OpenJS grip based on the value selected by the used on a drop down list. The calling script is time_data.php which extracts and populate the data. How can I achieve this ?
html PART
time_data.php
true, "delete"=>true, "editing"=>true, "where"=>"time_grpc = 'CARP'", "joins"=> array( "LEFT JOIN tbl_tmstat ON (tmstat_code = time_stats)" ), "select" => 'selectFunction' )); // 'selectFunction' function selectFunction($grid) { $selects = array(); //Session_start; // category select $grid->table = "tbl_tmstat"; $selects["time_stats"] = $grid->makeSelect("tmstat_code","tmstat_name"); // active select $selects["active"] = array("1"=>"true","0"=>"false"); // render data $grid->render($selects); }`enter code here` ```The text was updated successfully, but these errors were encountered: