when i use modal form in subgrid, i makes modal only the subgrid, how can i make modal including the parent grid?
fixed:
i had this code:
$grid["add_options"]["jqModal"] = true;
$grid["edit_options"]["jqModal"] = true;
$grid["add_options"] = array('width'=>'640','height'=>'300',"dataheight"=>'250',"recreateForm"=>true);
$grid["edit_options"] = array('width'=>'640','height'=>'300',"dataheight"=>'250',"recreateForm"=>true);
now is working the modal form with this code
//$grid["add_options"]["jqModal"] = true; //disabled
//$grid["edit_options"]["jqModal"] = true; //disabled
$grid["add_options"] = array('width'=>'640','height'=>'300',"dataheight"=>'250',"recreateForm"=>true,"jqModal"=>true);
$grid["edit_options"] = array('width'=>'640','height'=>'300',"dataheight"=>'250',"recreateForm"=>true,"jqModal"=>true);
however, when i click outside form it closes.