Hi,
I am on DS version 13.0.3.201405141058, just upgraded 1.2. The previously working clause +CHART_M.getSelectedMember("0CALMONTH")
is no longer working.
Interaction Selection mode is set to Single.
The original filter in the data source on 0CALMONTH is 10.2013 - 09.2014.
The following code is NOT working in DS 1.3 , that is, the data is not filtered to the specific month when being selected in the chart
in runtime (this has worked before in 1.2)
APPLICATION.openNewWindow(“https://.........
........VARIABLE_INPUT_STRING=”+CHART_M.getSelectedMember("0CALMONTH").externalKey);
Hard coding without selection on chart is working. The data set is restricted just to September 2014.
APPLICATION.openNewWindow("https://..........
..........VARIABLE_INPUT_STRING=09.2014");
Tests were made using text field.
Using the code below, the month that is selected in the chart is not written in the text field
TEXT_7.setText("Month: "+CHART_M.getSelectedMember("0CALMONTH").externalKey);
Not this one below either.
TEXT_7.setText("Month: "+CHART_M.getSelectedMember("0CALMONTH").text);
Using the code below, select one month, the result is: Month: (ALL MEMBERS)
TEXT_7.setText("Month: "+CHART_M.getSelectedMember("0CALMONTH").internalKey);
Does anybody know what the problem is?
Thank you very much in advance.
Best regards,
Zabrina