Hello community. I want to turn off textarea resizing of thats fields of type "textarea" in the edit form and also in the add form. Hpw can i do this?. Thanks.
My code is:
// Indico propiedades de la columna "nombre_apellido_cliente".
$col = array();
$col["name"] = "nombre_apellido_cliente";
$col["title"] = "Cliente";
$col["edittype"] = "textarea";
$col["width"] = "250";
$col["editoptions"] = array("rows"=>1, "cols"=>60,"style"=>"resize: none");
$col["editoptions"]["onclick"] = "this.focus();this.select();";
$col["editrules"] = array("required"=>true);
$col["hidden"] = false;
$col["editable"] = true;
$cols[] = $col;
I tried "style"=>"resize: none" but nothing.
I've tested exactly same code and it's working as expected.
http://hastebin.com/rumasexuji.php – line 58