DeSelect all items in GroupTable component

Hi
Is there any way for deselect all items in GroupTable component. I’d like to do it
in java code. There is method for select all groupTable.selectAll(), but I don’t find method for deleselect all items.

Hi,

You can use setSelected():

customersTable.setSelected(Collections.emptyList());

Thanks Olga ! Your way is woking.