Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2025 02:06 AM
Use a UI policy or Client script to hide the edit button when the state is "Assess" or "Authorize"
Client Script for reference:
if (g_form.getValue('state') == 'Assess' || g_form.getValue('state') == 'Authorize') {
// Hide Edit button logic here
g_form.setVisible('edit_button', false); // Hides the button
}