on 2019 Apr 16 5:33 PM
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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi - as this is a closed thread, please create a new question at answers.sap.com - thank you
User | Count |
---|---|
66 | |
10 | |
10 | |
10 | |
10 | |
8 | |
6 | |
5 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.