Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
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