- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-23-2017 02:36 PM
Hello,
Similar to 'changes()' on business rules (and) 'current/previous' objects on client scripts, is there an easy way to identify if a field value changed from a client side UI action?
Thanks in advance.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-23-2017 02:55 PM
Hello Snow,
At client side, you can check as
var field1 = g_form.getControl('caller_id');
if(field1.changed)
{
//your code
}
Reference:
https://www.servicenowguru.com/scripting/business-rules-scripting/checking-modified-fields-script/

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-23-2017 02:55 PM
Hello Snow,
At client side, you can check as
var field1 = g_form.getControl('caller_id');
if(field1.changed)
{
//your code
}
Reference:
https://www.servicenowguru.com/scripting/business-rules-scripting/checking-modified-fields-script/

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-28-2017 11:51 PM
If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.
If you are viewing this from the community inbox you will not see the correct answer button. If so, please review How to Mark Answers Correct From Inbox View.