Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I can able to get the current selection dimension values using mashup in Qliksense,but i want to get the another dimension field values for current selected dimension.
Eg: if i select country ID in will get the country values in current selection box.
How your mashup code for that line?
I tried to get the Selected Country ID using this below function
Now how can i get the CountryNames qfield values using selected Country ID qfield
app.getList("CurrentSelections", function(reply) {
var mySelectedFields = reply.qSelectionObject.qSelections
var countryIDValues = mySelectedFields.qSelectedFieldSelectionInfo;
var countryIDValues_arrayLength = currentFieldValues.length;
var countryID;
for (var y = 0; y < countryIDValues_arrayLength; y++) {
if(y==0) {
countryID+= countryIDValues
} else {
countryID+= ", " + countryIDValues
}
}
Hey Raj,
I have created a mashup where i have a separate sheet for "Filters". When i select any filter on Filter page and redirect to another sheet, my selected filters get removed. I dont know why this random behaviour. Can you help me in this?