Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
subash29
Contributor III
Contributor III

I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.

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.


I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.I can able to get the current selection data from Qlik sense mashup,but i need the another dimension field values from the Current selected dimension.
3 Replies
Anil_Babu_Samineni

How your mashup code for that line?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
subash29
Contributor III
Contributor III
Author

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 .qName;

  } else {

    countryID+= ", " + countryIDValues .qName;

  }

}

nikhilgarg
Specialist II
Specialist II

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?