Hi,
I would like to increase the height of the textarea on the add record page.
Thanks.
1 Answers
Hi,
You can set 500px to your desired value:
$col["edittype"] = "textarea"; $col["editoptions"] = array("style"=>"height:500px"); $cols[] = $col;
Your Answer