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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources 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