Record logical locking October 10, 2020, 09:38:07 PM Hi,I've a 'locked' attribute in my DB to every record. The attribute value is '1', if the record is locked, and that is '0', if the record unlocked.If I create a customized List View, and write this before Edit button: if(($can_edit)&&($data['locked']=='0')). No effect. Why?Thx! Quote Selected
Re: Record logical locking Reply #1 – October 10, 2020, 10:09:19 PM Solution: the "locked" attribute is 'true' or 'false' in the DB (varchar(5) type). And the logicalt locking is work. Quote Selected