I have a submit button on an edit page with the following patch function.
Patch(
EP_Title_To_Persona,
LookUp(EP_Title_To_Persona, Id=Gallery_Main.Selected.Id),
{
Persona: DataCardValue8_Persona.Text,
Title: DataCardValue9_Title.Text,
Updated_By:User().FullName,
Updated_Date:Now()
}
);
I added the following to the on success of the form.
Notify("yep",NotificationType.Success,5000);Back()
I never get the notification, and the back doesn’t work.
Why isn’t my on success firing?