User should not be able to select from reference lookup view
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2025 04:28 AM
Is it possible that user can see records from the reference field lookup view, but can not select any of them?
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-17-2025 08:11 AM
@Elvin_Salim Not sure what is business use case but you can write on change client script, below is the example
if (g_form.getValue('your_reference_field')) {
g_form.setValue('your_reference_field', '');
g_form.showFieldMsg('your_reference_field', 'Selection not allowed for this field', 'error');
}
Please mark correct/helpful if this helps you!