How can I install on the add to INPUT read-only property.
The field should be visible, but the editing is prohibited.
2 Answers
You can set it using editoptions. These are applied as HTML tag attributes.
$col["editoptions"] = array("readonly" => "readonly");
Your Answer