![]() |
Sergey Kornilov admin 12/24/2013 |
Here is the code you can use in BeforeAdd or in BeforeEdit event to set the value of IsLocked field: $values["IsLocked"]=1;
|
A
|
Abbas author 12/26/2013 |
Here is the code you can use in BeforeAdd or in BeforeEdit event to set the value of IsLocked field: $values["IsLocked"]=1;
if (
|
A
|
Abbas author 12/29/2013 |
I've written this event in "Before Record Updated" if ($values["IsLocked"]=1)
|
![]() |
Sergey Kornilov admin 12/29/2013 |
The following line is incorrect: if ($values["IsLocked"]=1)
if ($values["IsLocked"]==1) |
A
|
Abbas author 12/30/2013 |
Thank you |