Clear Combo Values

Hello, @vijaysinhparmar

To clear all dropdown data, please, use

   let popup = $$("mycombo").getPopup();
      let list = popup.getBody();

to get a list with options, and then list.clearAll() in order to remove the options.
Options can be redefined like any other property. For example, for this purpose you could use define
Please, check the snippet here: Code Snippet