|
To hide the Edit link
when the record status is "processed", use the following code in
the List page: After record
processed event.
Note: Change the values listed in
red to match your specific needs.
if ($data["Status"]=="processed")
{
$record["edit_link"] = false;
}
|
To be sure that record editing is disabled, also perform a
checkup on the Edit
page.
|