Hi @wlyttle ,
Apparently the Gallery is below not inside the Edit form. If you need to change display mode of the Gallery, you will have to set DisplayMode property of the Gallery based on the DefaultMode of the Edit form:
If(Editform.Mode = FormMode.Edit,
DisplayMode.Edit,
DisplayMode.View
)
In the Gallery, the DisplayMode property of all Controls that need to edit (type in, select etc.) need change to:
Parent.DisplayMode
in order to make them be consistent with the Gallery.
Back to your scenario, I think the issue is: you are able to type in in the Gallery but nothing will be submitted to the SP list, am I right?
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.