function Move_To_Next_Stage() {
Xrm.Page.data.entity.save();
Xrm.Page.data.process.moveNext(function (result) {
if (result != "success") {
alert(result);
};
});
Why am I getting "dirtyForm" and why is that preventing the active/selected stage from progressing?