Skip to Content
0
Aug 08, 2023 at 07:48 AM

SAPUI5 xml view - Set unselect Row in m table

100 Views

Hi,

I am using m table with mode="MultiSelect".

I have input control in my table column and I able select the table row as soon as i enter any values. i used oTable.setSelectedItem(oTable.getItems()[index]); and it works fine.

oTable.setSelectedItem(oTable.getItems()[index]);

But i am not able to uncheck the checkbox from the selected row as soon as i remove value from input control.

oTable.removeSelections

oTable.removeSelections remove all the checkboxes but i need to remove only selected row.

please advise