cancel
Showing results for 
Search instead for 
Did you mean: 

Sap Analytic Cloud Application Design - How to fill a dropdown by data source dimension?

michaelwecker
Participant
3,512

Hello,

does somebody know how to fill a dropdown within SAP Analytic Cloud Analytic Application

I understand that you have to fill it on onInitialization.

My try was:

var product_list = Table_1.getDataSource().getMembers("Produkt");

Dropdown_Produkt.addItem(product_list, product_list);

How is the syntax for

addItem(key: string, text?: string);

Thank you for your support

Best regards

Michael

joyal_laj
Participant
0 Kudos

Hai,

Can we enable search inside a similar dropdown having dimension values?

Thanks and Regards,

Joyal Laj

View Entire Topic
TammyPowlas
Active Contributor

Michael - it is not active in my tenant yet, but here is the on init code we used in a workshop recently:

var i=0;
var ListDimensions = Table_1.getDataSource().getDimensions();
for (i=0;i< ListDimensions.length; i++)
{
Dropdown_2.addItem(ListDimensions[i].id,ListDimensions[i].description);
}

Hope that helps.

joyal_laj
Participant
0 Kudos

Hai,

Can we enable search inside a similar dropdown having dimension values?

Thanks and Regards,

Joyal Laj

TammyPowlas
Active Contributor

Hi - as this is a closed thread, please create a new question at answers.sap.com - thank you