Hello,
At this moment we are using Design Studio 1.6 and we are using 1) a tree component and 2) a crosstab component (both basic Design Studio components in 1.6). The selection type for both is multi and I added a text header.
1) Tree component;
2) Crosstab component;
Both have Events On Select;
1. DS_1.setFilter("ID", TREE_1.getSelectedMembers());
2. DS_1.setFilter("ID", CROSSTAB_1.getSelectedMembers("ID"));
When I click on [Education] I would like to reset the filters. This can be done with the use of;
DS_1.clearFilter("ID");
But I would also like to clear the selections. For a crosstab I can use CROSSTAB_1.removeSelection(); which is working fine.
Now I would like to do the same for the tree component, but TREE_1.removeSelection(); isn't available. Using a tree component is favorable because of dimension selection in a data source (instead of adding a new data source).
Any suggestions how to do this? Thanks!
Best regards, Pieter

