dynamics crm 2011 - clearoption for optionset in crm business process flow -
i have business process flow in 1 of steps have added option set(sub category)
i trying clear options in optionset using below code
xrm.page.getcontrol("new_subcategory").removeoption(100000005) xrm.page.getcontrol("new_subcategory").clearoptions()
this removes options optionset inside form, not removing same option set in step of business process flow
you need added header_process_
id. so:
xrm.page.getcontrol("header_process_new_subcategory").removeoption(100000005) xrm.page.getcontrol("header_process_new_subcategory").clearoptions()
Comments
Post a Comment