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 values in red to match your project settings.
if ($data["status"]=="processed")
{
$pageObject->hideItem("grid_edit", $recordId);
}
See also:
•JavaScript API: makeReadonly()