Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
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.
So based on if a selection was confirmed or not I want to set the value of toggleMode accordingly.
Best regards
thorben
@TH , were you able to figure out a way to do this?