Hi Team,
I have created an application using SAP analytical designer in SAC and added dropdown list in our report.
in my application, I have added 3 drop down lists as show below. When I select my keys in below Dropdown list and click Apply filters , the table gets filtered based on selected keys and it is working fine.
I have created another button - Reset filters, where I have written script to remove the filters from table and it's working fine too.
Table_1.getDataSource().removeDimensionFilter("Employment_Type");
Table_1.getDataSource().removeDimensionFilter("Gender");
Table_1.getDataSource().removeDimensionFilter("Position");
But now my requirement is when I click reset button, all of my dropdown list also get reset and show inital state which is blank. Right now when i click on reset button, the selected keys still remains there in the drop down list even after clicking reset button which doesnt give nice user experience.
I want all of my dropdown list to set to initial state ( showing blank ) when I click reset button.so that I can again go and select other selections.

Please help on this.