cancel
Showing results for 
Search instead for 
Did you mean: 

SAP Analytics Cloud Design - How can we enable search inside a dropdown having dimension values?

joyal_laj
Participant
0 Kudos

Hi,

I have a dropdown having the values of a dimension in it. Suppose we have a lot of data in the dimension, but the user is not able to do search in the dropdown. This will affect the User Experience.

Is there any way to enable search in the Dropdown?

Thanks and Regards,

Joyal Laj

View Entire Topic
saurabh_sonawane
Active Contributor

Step 1 - Create a global variable = matinput

step 1 Insert the Image of search in the canvas (on click event try to display the popups)

step 2 .try to develop a one new popups

step3 - on popups try to insert one input text box and one OK button

step4 - on OK select button write the below code

matinput = InputField_1.getValue();

dropdown_Material.setSelectedKeys(Matinput);

after this apply the filter to the chart .using matinput variable..

joyal_laj
Participant
0 Kudos

Hi,

It worked.

Thanks and Regards,

Joyal Laj