In Ui policy condition i am not able to see the "is not empty" dropdown
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2023 06:29 PM
Hi,
In Ui policy condition i am not able to see the "is not empty" in the dropdown list as mentioned in the below screenshot.
Please help me out how i can see for the same.
I want to keep that field is not empty then only i can write the ui policy action that is what my requirement.
Thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2023 06:49 PM
Please find the below script of on submit client script
No idea why the script is written for.
please help me can we figure out this?
Thanks,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2023 06:58 PM
Hi @kranthi2 Not this client script. Check the client script on your catalog item.
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2023 07:05 PM
Hi @kranthi2 ,
Instead of UI policy over here u can go with onLoad or onSubmit Client script where u can check that as something like below
if(g_form.getValue('registered_vehicles') == ""){
//Write ur logic here;
}
Thanks,
Danish