public void onSelect(SelectEvent event) {
if (!displayerSettings.isFilterEnabled()) return;
JsArray<Selection> selections = selectable.getSelection();
for (int i = 0; i < selections.length(); i++) {
Selection selection = selections.get(i);
int row = selection.getRow();
String intervalSelected = getValueString(row, 0);
filterUpdate(googleTable.getColumnId(0), intervalSelected, googleTable.getNumberOfRows());
}
// Redraw the char in order to reflect the current selection