Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all hope you're fine,
I'm new with Qlik sense and I'm with mashup editor trying to select a value from a filter object on page load through JavaScript like in the below image:
I was trying by selecting it looking for an Id but I didn't found a way, I did some tests into document ready method but without luck.
Someone has an idea or help to achieve it?
Thank you!
Hi,
You Can tru using Field API.
app.getObject('CONTAINER ID','OBJECT ID').then(function(reply){
app.field('FIELDNAME').toggleSelect("FIELD VALUE", true);
});
This is a simpla example replace the Following