if we are calling a snippet from another snippet like
var SaveQLIModels = skuid.snippet.getSnippet('SaveQLIModels');<br>SaveQLIModels ();
Can we make the current snippet to wait until SaveQLIModels snippet execution is completed.
I tried using
$.when(SaveQLIModels()).done(function(){<br>**Remaining logic**<br>})
but it not waiting until snippet SaveQLIModels() execution complete. Let me know what I am missing her.
Thanks in advance for the help.