Skip to main content
Nintex Community Menu Bar
Question

Can we make snippet to wait until called snippet execution completed

  • July 11, 2024
  • 5 replies
  • 1 view
  • Translate

Forum|alt.badge.img+3

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.

Did this topic help you find an answer to your question?

5 replies

Forum|alt.badge.img+11
  • 340 replies
  • July 11, 2024

I think you need a call back function, which proceeds once your save is successful.

skuid.model.save([MyModel], {callback: function(result){
if (result.totalsuccess) {

// rest of your logic
  
} else {
//logic if the save fails
console.log(result.insertResults);
console.log(result.updateResults);
console.log(result.deleteResults);
return false;
}
}});

Translate

Forum|alt.badge.img+3

Thanks Chandra for a quick reply.
Here in my scenario, I am calling another snippet. so this

skuid&#46;snippet&#46;getSnippet('SaveQLIModels'); 

will return a function and that function should have a callback to execute the remaining logic?

Translate

Forum|alt.badge.img+9
  • Nintex Employee
  • 890 replies
  • July 11, 2024

Dinesh, you might also be able to set up a Model Action on the model that’s being saved. You can use “model saved” as the trigger, then set up an action sequence that runs the SaveQLIModels snippet. 

Translate

Forum|alt.badge.img+9
  • Nintex Employee
  • 890 replies
  • July 11, 2024

By the way, if your SaveQULIModels snippet is just saving other models, you can set up the same kind of model action sequence to do that declaratively, whenever the first model is saved.

Translate

Forum|alt.badge.img+3

@Mark, yes initially models save was defined declaratively and after that we are calling a snippet. but unfortunately all those declarative actions are firing asynchronously. So some time before save of models completed snippet is firing and it is holding the old data. That is the main reason, we wrote snippet for models save and calling another snippet on success of models save.

Translate

Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings