- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2024 06:11 AM
Trying to make a Variable Editor on the table read-only for a specific record prodcuer.
I have created a catalog UI Policy and in the "execute if true" I put :
function onCondition() { g_form.setVariablesReadOnly(true); }
This works correctly ,it makes all variables ready only but sometimes after refreshing the browser , some variables will stop being read only and then after refreshing a second time they will be ready only again. I have already cleared my web browser's cache and cookies. What could be the reason?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2024 08:06 AM
Hi @Linda5
Please check the order of the script, there might be other scripts running before this which makes the field editable.
Please mark helpful if this resolves your query.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-07-2024 08:06 AM
Hi @Linda5
Please check the order of the script, there might be other scripts running before this which makes the field editable.
Please mark helpful if this resolves your query.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-09-2024 01:12 PM
Hi @_Gaurav ,
Yes ,that worked , thank you !