I'm working on trying to filter a DropDown List bsed on level of security of the data within the model but am not having any luck. The other items on the analytic application are only showing items that are pertinent to their security allowances. Any ideas on how to fix this? Code is as follows to populate the DropDown list:
var Brand_Breakdown = Table_1.getDataSource().getMembers("Entity_1554235389719");
for ( var i=0; i < Brand_Breakdown.length; i++){
Dropdown_1.addItem(Brand_Breakdown[i].id + " " + Brand_Breakdown[i].description);
}