Hello,
Perhaps someone could advise how to troubleshoot a problem when a Canvas app form in the SharePoint list is not loading?
I have multiple screens where each includes 1 or 2 two forms. My SharePoint integration OnNew is equal to
//Reset forms
ResetForm(form_1);
ResetForm(form_2);
ResetForm(form_3);
ResetForm(form_4);
ResetForm(form_5);
ResetForm(form_6);
ResetForm(form_7);
ResetForm(form_8);
// New forms
NewForm(form_1);
NewForm(form_2);
NewForm(form_3);
NewForm(form_4);
NewForm(form_5;
NewForm(form_6);
NewForm(form_7);
NewForm(form_8);
/*Set variable that holds details of the submited item*/
Set(
varLastSubmitedItem,
Blank()
)
Am I using too many forms? I have tried clearing Cache, but it didn't seem to help. Would appreciate any advice.