Hi,
Intitially i have a dropdown which has the below code.
var richselect = webix.ui({
view:"richselect",
label:"Choose",
value:1, options:[
{ "id":1, "value":"Banana"},
{ "id":2, "value":"Papaya"},
{ "id":3, "value":"Apple"}
]
});
When i select the option from the dropdown ,and click on the dropdown only the selected value should be visible.