Hi,
Is it possible to remove an option from a multi-select option set field on the portal via JavaScript?
The code to remove a value from a single option set field doesn't work i.e. $("#field option[value='1']").remove();
Hi,
Is it possible to remove an option from a multi-select option set field on the portal via JavaScript?
The code to remove a value from a single option set field doesn't work i.e. $("#field option[value='1']").remove();
can you check if this helps?: Manipulating Choices (Multiselect OptionSet) via J... - Power Platform Community (microsoft.com)
It would be something like this:
$("#<field>_i input[value='1']").closest("li").remove()