cancel
Showing results for 
Search instead for 
Did you mean: 

Dropdown scripting

DanielVisblut
Explorer
0 Kudos

I have a click Button to insert a new member into diemnsion
I have 1 input field for the ID and Description (its the same)
and i want the user to choose a category (property) from a drop down
also i want to define the heirarchie to be equal to H2 always
i wrote a script but its not working

NEED YOUR HELP IN THE DESCRIPTION FROM DROP DOWN AND INSERT A VALUE TO THE HIER COLUMN 
var dim="Cause";
members = {
            id:InputField_1.getValue(),
            description:Dropdown_1.getValue()
            H2:getValue(H2)
};
var status = PlanningModel_1.createMembers(dim,members);
if (status===true){Application.showMessage(ApplicationMessageType.Success,"master data is created");}
else {Application.showMessage(ApplicationMessageType.Error,"something is  wrong,try again");}
Thank you very much

View Entire Topic
david3030
Explorer
0 Kudos

Hello,

you need to use those API's to get values (id or text) from dropdowns :

Dropdown_1.getSelectedKey();
or
Dropdown_1.getSelectedText();

I think you are going to have some problems with -> getValue(H2) I'm not sure you can use this line like that. What is the goal corresponding to  H2 ?

 

Best regards