You may experience unexpected behavior when you perform the following actions:
As a result, all the children under the disassociated category from step 1 do not re-parent with the category entered on step 2.
To resolve the issue, consider the following steps in BizFX SDK:
submitAction(): void {
if (!this.action.RequiresConfirmation) {
this.prepareSaveView();
this.doAction();
} else {
this.doAction();
}
}
submitAction(): void {
this.prepareSaveView();
this.doAction();
}