is there some event that tells us when a selection is confirmed by the user pressing the green button with the check symbol in it ?
Context:
In my extension I want to immitate the qlik selection/filter behaviour exactly. As far as I understand when there is no selection in a visualization this selection behaviour is used:
self.selectValues(dim, [value], true);
But when a slection was confirmed the visualization behaves like this:
self.selectValues(dim, [value], false);
The boolean Parameter is toggleMode:
If true, values in the field are selected in addition to any previously selected items.
If false, values in the field are selected while previously selected items are deselected.