Hi @rytze,
Please set the successfuly notification on OnSuccess property of the Form1:
Notify
(
"Your Form has been successfully submitted.",
NotificationType.Success
)
Then set the OnSelect property of the submit button as:
SubmitForm(Form1);NewForm(Form1);Navigate(Form1)
If you have few required fields, I don't suggest you refer to Form.Valid, and I suggest you valid each required field one by one, Then set the DisplayMode property of the submit button as:
If(IsBlank(textinput1.Text)||IsBlank(textinput2.Text),DisplayMode.Disbaled,DisplayMode.Edit)