Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Help with Async Object Handling in Mashups

I have a mashup with multiple app objects that were created with custom extensions. How do I programmatically wait until after the app objects are loaded to perform other tasks? I've tried this:

app.getObject('QV02','cJvY').then( function ( model ) { 

  model.Validated.bind( function () { 

    console.log('Validated');

  }); 

});

to no avail. The "Validated" code never runs even though the objects load just fine. What is the correct way to do this?

0 Replies