Hi,
I have created one Multi Combobox with bound items.
This is my code :
handleSelectionFinish:function()
{
var token = this.getView().byId("combo").getSelectedItems();
var selectedItem = token[0].mProperties.text;
}
Here I am getting all the value what I am selected. Instead of that, I need to fetch the newly-selected( recently selected ) single value from the multi combo box. Is there any way to implement?