Posted by Oscar
2015-11-09

Dear: Tom
I have 6 Column in Edit Option and I need to disable the Keyboard in 3 of then, How can I Do that.
Posted by Tom
2015-11-12

One way to do it is to add the "disabled" attribute to the input fields you want to disable. To do so, open the template web/staff/tpl.(tablename).detail.inc.php and find a field you want to disable. For example,
<?php echo $hm->Zb('rs:def:field-name-here'); ?>
Add , ZB_ATTR, array( "disabled"=>"disabled" ) to the field. The result should look like:
<?php echo $hm->Zb('rs:def:your-field-name-here', ZB_ATTR, array( "disabled"=>"disabled" )); ?>