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