maryh_80946
08/04/2023, 2:48 PMAmbert
08/04/2023, 3:10 PMAmbert
08/04/2023, 3:11 PMGoForward()
is also a custom (overridden) method ? Did you perhaps make any other changes in the solution that could've caused it to break ?maryh_80946
08/04/2023, 3:23 PMmaryh_80946
08/04/2023, 3:24 PMRavi
08/04/2023, 5:18 PMLars-Erik
08/04/2023, 5:35 PMAmbert
08/04/2023, 7:30 PMAmbert
08/04/2023, 7:31 PMSebastiaan
08/07/2023, 7:29 AMGoForward
is a private method, so not sure what is going on.maryh_80946
08/07/2023, 7:30 AMSebastiaan
08/07/2023, 7:31 AMcsharp
private void GoForward(Form form, FormViewModel model)
{
model.FormStep++;
if (model.FormStep == form.Pages.Count())
{
SubmitForm(form, model);
}
}
Yes that's what it's for.
I would check if ALL of your Forms dlls are up-to-date, check the installed NuGet packages to make sure they're all on the same version for Forms. If you have multiple projects in your solution, they might have (parts of) Forms installed to, make sure they're all on the same version as well.Ravi
08/07/2023, 8:10 AMmaryh_80946
08/07/2023, 3:28 PM