
Hi all
I've a button that run a flow that is working well.
In XrmToolBox I've inserted this code on "Start Confirmation Text" , but the 3 scripts are not working ... where I'm mistaken?
thanks for any suggestion or idea.
solved with this code:
Xrm.Navigation.openAlertDialog({ text: "Lead creato; attendere qualche secondo per aggiornamento dati." }).then(function () {
Xrm.Page.data.save().then(function () {
Xrm.Page.ui.close();
});
setTimeout(function () {
Xrm.Page.data.refresh(true);
}, 3000);
});