<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: OnChange client script not working in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518721#M6539</link>
    <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/207208"&gt;@MonicaW&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try this&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;function onChange(control, oldValue, newValue, isLoading, isTemplate) {
    if (isLoading) {
        return;
    }

    var needsUpdate =
        !g_form.getValue('life_cycle_stage_as') ||
        !g_form.getValue('life_cycle_stage_status_as') ||
        !g_form.getValue('business_service_tier_as') ||
        !g_form.getValue('change_group_as') ||
        !g_form.getValue('support_group_as') ||
        !g_form.getValue('business_contact_as') ||
        !g_form.getValue('managed_by_as') ||
        !g_form.getValue('description_as') ||
        !g_form.getValue('data_classification_as') ||
        !g_form.getValue('regulatory_attribute_as') ||
        !g_form.getValue('vendor_as') ||
        !g_form.getValue('installed_as');

    g_form.setValue('record_needs_updating', needsUpdate);
}&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; If my response helped, please mark it as correct &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; and close the thread &lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt;— this helps future readers find the solution faster! &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Apr 2026 04:56:42 GMT</pubDate>
    <dc:creator>Ankur Bawiskar</dc:creator>
    <dc:date>2026-04-02T04:56:42Z</dc:date>
    <item>
      <title>OnChange client script not working</title>
      <link>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518561#M6535</link>
      <description>&lt;P&gt;I'm trying to get an onChange client script to examine a group of fields and if ANY of them is blank (have them setup to auto-fill from a table), then I want a checkbox to evaluate to true.&amp;nbsp; Here's what I have but it is not working.&amp;nbsp; Any help/pointers are appreciated (I'm not an expert client scripter).&amp;nbsp; Note, using the commented out else doesn't help either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;function&lt;/SPAN&gt;&lt;SPAN&gt; onChange(control, oldValue, newValue, isLoading) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (isLoading || newValue == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;g_form.setValue(&lt;/SPAN&gt;&lt;SPAN&gt;'record_needs_updating'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'false'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'life_cycle_stage_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'life_cycle_stage_status_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'business_service_tier_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'change_group_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'support_group_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'business_contact_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'managed_by_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'description_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'data_classification_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'regulatory_attribute_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'vendor_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt; || g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'installed_as'&lt;/SPAN&gt;&lt;SPAN&gt;) == &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;g_form.setValue(&lt;/SPAN&gt;&lt;SPAN&gt;'record_needs_updating'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'true'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;// else g_form.setValue('record_needs_updating', 'false');&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 Apr 2026 18:52:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518561#M6535</guid>
      <dc:creator>MonicaW</dc:creator>
      <dc:date>2026-04-01T18:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: OnChange client script not working</title>
      <link>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518580#M6536</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/207208"&gt;@MonicaW&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The logic is fine, but there are a couple of small things in ServiceNow client scripting that are tripping you up:&lt;BR /&gt;1. Checkbox values&lt;BR /&gt;In catalog/client scripts, checkboxes are stored as strings: 'true' or 'false'. &lt;BR /&gt;So when you call g_form.setValue('record_needs_updating', 'true'), that’s correct. Just make sure the target field really is a checkbox.&lt;/P&gt;
&lt;P&gt;2. Script structure&lt;BR /&gt;Right now your if statement doesn’t have braces {} around the block, so only the first line after the if executes. &lt;BR /&gt;That means your g_form.setValue('record_needs_updating', 'true'); may not be running as expected.&lt;/P&gt;
&lt;P&gt;function onChange(control, oldValue, newValue, isLoading) {&lt;BR /&gt;if (isLoading) {&lt;BR /&gt;return;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;// Default to false&lt;BR /&gt;g_form.setValue('record_needs_updating', 'false');&lt;/P&gt;
&lt;P&gt;// Check if ANY of the fields are blank&lt;BR /&gt;if (&lt;BR /&gt;g_form.getValue('life_cycle_stage_as') === '' ||&lt;BR /&gt;g_form.getValue('life_cycle_stage_status_as') === '' ||&lt;BR /&gt;g_form.getValue('business_service_tier_as') === '' ||&lt;BR /&gt;g_form.getValue('change_group_as') === '' ||&lt;BR /&gt;g_form.getValue('support_group_as') === '' ||&lt;BR /&gt;g_form.getValue('business_contact_as') === '' ||&lt;BR /&gt;g_form.getValue('managed_by_as') === '' ||&lt;BR /&gt;g_form.getValue('description_as') === '' ||&lt;BR /&gt;g_form.getValue('data_classification_as') === '' ||&lt;BR /&gt;g_form.getValue('regulatory_attribute_as') === '' ||&lt;BR /&gt;g_form.getValue('vendor_as') === '' ||&lt;BR /&gt;g_form.getValue('installed_as') === ''&lt;BR /&gt;) {&lt;BR /&gt;g_form.setValue('record_needs_updating', 'true');&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;If you want this to run whenever any of those fields changes, you’ll need to attach the same onChange script to each of them. &lt;BR /&gt;Alternatively, you can use an onSubmit script to check all fields at once, which is often simpler.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&lt;SPAN&gt; Mark it helpful if this helps you to understand. Accept solution if this give you the answer you're looking for&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; Kind Regards,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; Pavani P&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 Apr 2026 19:16:01 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518580#M6536</guid>
      <dc:creator>pavani_paluri</dc:creator>
      <dc:date>2026-04-01T19:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: OnChange client script not working</title>
      <link>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518587#M6537</link>
      <description>&lt;P&gt;Hi Pavani, thank you.&amp;nbsp; I replaced my script with what you gave me above in your reply and it's still not working.&amp;nbsp; I'm not seeing the {} around the IF statement that you mentioned in what you provided though. Should it be right before the word IF?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Apr 2026 19:33:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518587#M6537</guid>
      <dc:creator>MonicaW</dc:creator>
      <dc:date>2026-04-01T19:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: OnChange client script not working</title>
      <link>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518696#M6538</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/207208"&gt;@MonicaW&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;function&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;onChange(control, oldValue, newValue, isLoading) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;(isLoading || newValue ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;g_form.setValue(&lt;/SPAN&gt;&lt;SPAN&gt;'record_needs_updating'&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;false&lt;/STRONG&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;(g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'life_cycle_stage_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'life_cycle_stage_status_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'business_service_tier_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'change_group_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'support_group_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'business_contact_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'managed_by_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'description_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'data_classification_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'regulatory_attribute_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'vendor_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;|| g_form.getValue(&lt;/SPAN&gt;&lt;SPAN&gt;'installed_as'&lt;/SPAN&gt;&lt;SPAN&gt;) ==&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;g_form.setValue(&lt;/SPAN&gt;&lt;SPAN&gt;'record_needs_updating'&lt;/SPAN&gt;&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#0000FF"&gt;&lt;STRONG&gt;true&lt;/STRONG&gt;&lt;/FONT&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;// else g_form.setValue('record_needs_updating', 'false');&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 02 Apr 2026 03:39:57 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518696#M6538</guid>
      <dc:creator>Tanushree Maiti</dc:creator>
      <dc:date>2026-04-02T03:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: OnChange client script not working</title>
      <link>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518721#M6539</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/207208"&gt;@MonicaW&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try this&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;function onChange(control, oldValue, newValue, isLoading, isTemplate) {
    if (isLoading) {
        return;
    }

    var needsUpdate =
        !g_form.getValue('life_cycle_stage_as') ||
        !g_form.getValue('life_cycle_stage_status_as') ||
        !g_form.getValue('business_service_tier_as') ||
        !g_form.getValue('change_group_as') ||
        !g_form.getValue('support_group_as') ||
        !g_form.getValue('business_contact_as') ||
        !g_form.getValue('managed_by_as') ||
        !g_form.getValue('description_as') ||
        !g_form.getValue('data_classification_as') ||
        !g_form.getValue('regulatory_attribute_as') ||
        !g_form.getValue('vendor_as') ||
        !g_form.getValue('installed_as');

    g_form.setValue('record_needs_updating', needsUpdate);
}&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; If my response helped, please mark it as correct &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; and close the thread &lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt;— this helps future readers find the solution faster! &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2026 04:56:42 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518721#M6539</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2026-04-02T04:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: OnChange client script not working</title>
      <link>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518954#M6551</link>
      <description>&lt;P&gt;Thank you for your help.&amp;nbsp; I tried it and it still fails. I'm going to go back to trying UI policies for this as I know they execute before client scripts.&amp;nbsp; I had tried them earlier, but ran into an issue - but I think I've figured out what to do.&amp;nbsp; I believe the reason the onchange script isn't working is because when I select the configuration item, I have it auto-populating the fields and I believe, this change is conflicting with the onchange script.&amp;nbsp; Thanks again.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2026 11:25:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3518954#M6551</guid>
      <dc:creator>MonicaW</dc:creator>
      <dc:date>2026-04-02T11:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: OnChange client script not working</title>
      <link>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3521702#M6601</link>
      <description>&lt;P&gt;Hi Ankur, I went with UI policies instead but I believe your solution would have worked.&amp;nbsp; I found a mis-matched variable type that was causing the issues.&amp;nbsp; I didn't test your solution, but I will mark it as accepted.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2026 12:28:42 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/onchange-client-script-not-working/m-p/3521702#M6601</guid>
      <dc:creator>MonicaW</dc:creator>
      <dc:date>2026-04-08T12:28:42Z</dc:date>
    </item>
  </channel>
</rss>

