i would like to know how we can remove the default size attribute provided in $col['editoptions']. I don't want size attribute over there.
1 Answers
In dropdown, size = 1 is added inside JS core lib and can't be removed.
You can override width or other attributes values (height,width) using css inline style.
e.g.
$col['editoptions']["style"] = "width:200px";
$col['editoptions']["size"] = "4";
$col['editoptions']["multiple"] = true;
Your Answer