Skip to Content
0
Jun 03, 2018 at 07:44 AM

How can I get newly selected value from MultiComboBox

1593 Views Last edit Jun 03, 2018 at 07:47 AM 2 rev

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?