I created an issue tracker application from a SharePoint list. The issue that I’m dealing with is that the there is a substantial amount of delay for the choices in a combo-box to display. The issue seems to occur when opening the application after hours of not using it and I try to create or edit a record on the form. The values will eventually appear if I click on other fields and then click on the Combo Box again. The form default property is:
DefaultMode=If(newMode, FormMode.New, editMode, FormMode.Edit, FormMode.View)
the combo box item property =
Choices([@'MyList'].'Role')
Is there a better way to fetch these values when the form is in edit or new mode?