-- None -- option gets added in a choice list
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2022 02:06 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2022 02:29 AM
Hi,
still it --None-- is coming after select this option "Dropdown without --None---".
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2022 02:30 AM
Check if --none-- has been added as part of Choices there in second tab.? If yes then make it inactive.
Regards,
Musab
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2022 02:34 AM
Hello Ankita,
1)Please follow below steps:-

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-29-2022 11:51 PM
hi there,
Thought of sharing how I overcome this problem with a OnChange Client Script as below:
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
//Type appropriate comment here, and begin script below
if(newValue.includes('-- None --')){
var arrValues=newValue.split(',');
var outArr=[];
for(var i=0;i<arrValues.length;i++){
var eachSelection=arrValues[i];
if(eachSelection!='-- None --'){
outArr.push(eachSelection);
}
}
//note that second array is the Display Value array for the GlideList.
g_form.setValue('u_service_response_service',outArr,outArr);
}
}
hope this helps. 🙂
Right Click--> Configure Dictionary---> Select Dropdown without Choice