Clear Combo Values

How to clear the value populated in combo after selection.Destructor function is destructing the combo itself ,i need to destruct the values only.

Hi, you can set an empty value with the setValue() method. It will remove text from the input field and clear current selection in the popup list:

http://webix.com/snippet/a0e579c0

@Helga this is just setting value to empty but not clearing all dropdown data, could you please let me know how to clear entire combo and update with new data?

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