- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-26-2016 10:12 AM
How to clear the value selected in the "List" type in custom application forms.. I tried with g_form.removeOption but it didnt work out.. Thats only for choice list..
P.S This is not for List collector.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-26-2016 12:41 PM
Try this
javascript: 'sys_id!='+current.getValue('sys_id') +'^status !=bbaba8c113026e40cecdf5104244b067'

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-26-2016 10:17 AM
Do you want to do that on client side?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-26-2016 10:24 AM
Actually i m creating a record and there is a dependency field.. the user can choose other records in that table as dependent record but not that record itself..
I have added a client script to do the validation and i m returning false..
but also i want to remove the option from the list/...

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-26-2016 10:23 AM
Use g_form.clearValue('list type field name goes here');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-26-2016 10:27 AM
that clears all the selections from that list.. Is there an option to clear particular record from that list?