Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2026 08:54 AM - edited 04-29-2026 08:55 AM
Hello @aaronanders
Here is onCellEdit Client script:
function onCellEdit(sysIDs, table, oldValues, newValue, callback) {
var saveAndClose = true;
//Type appropriate comment here, and begin script below
var viewName = g_list.getView();
if (viewName == 'portal') { //System UI > Views
alert('You are not authorized to update State Value "On Hold" in the Portal view.');
saveAndClose = false;
}
callback(saveAndClose); // Returning false prevents the update
}
Validation:
Hope that helps!