Community Alums
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2025 12:33 AM
Hi @vamsi52
Yes, You can add a condition to hide it based on certain criteria (e.g., user role, conditions related to the Business Application, or any custom logic). In the UI Action record, check for a condition under the Condition field.
OR
use following client script:
if (g_user.hasRole('admin'))
{
g_form.setDisplay('create_button', false);
}