Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How do I do multiple selection using qlik engine api explorer?

I am using node.js to access qlik engine explorer through web socket.Literally i need to select two or more fields(Date,Branch etc,). I used GetField() and Select() method to select the corresponding fields .for example { Date:"01/02/2018",Brand:"Gift"}  date is field dimension name  followed by value and brand is field name followed by value.

I'm making selection by through the above object.

When I'm looping through multiple field like this it's just keep the selection of last field and clears the rest and following is my json sample.

GetField() method:

{
"handle": 1,
"method": "GetField",
"params": {
"qFieldName": "Date",
"qStateName": ""
}
}

Select() method:

{
"handle": 2,
"method": "Select",
"params": {
"qMatch": "01/02/2018",
"qSoftLock": false,
"qExcludedValuesMode": 0
}
}

1 Reply
Manoj_Prabu
Partner - Creator
Partner - Creator

Hi @Anonymous ,

Looking for the same method as yours. did you find the solution...? please share if you do.

Thanks