Hi,
I changed the font-size of my grid but now the Add-Dialogue is far to small for the content.
I tried chaning the size like this:
#editmodlist1{
width : 370px;
height: 370px;
}
but it did not work.
So how do I do this?
Thanks,
Alex
1 Answers
Set Add and Edit form & View dialog width:
$grid["edit_options"] = array('width'=>'370');
$g->set_options($grid);
Height is auto set w.r.t. content of dialog.
You can also use:
$grid["add_options"] = array('width'=>'370');
$grid["view_options"] = array('width'=>'370');
Refer docs for more.
Your Answer