Hi Mates,
We have two Viewitems, NewItem Screen(View items screen is Default when app load)
View items screen have feasibility go to newitems screen to fill and submit items
ViewItems Screen has Gallery to display submitted items.
NewItems Screen has an Edit form to submit to users.
the issue is when we/user submit the form from newitems screen then after submitting form displays "No items to display"
Any help after submitting form fields has to display.
Hello,
in my case there had to be two semicolons:
SubmitForm(EditForm3);;NewForm(EditForm3)
BR
Sami
Could you please share a bit more about the scenario:
// If you want to create a new record once submit the form, please set the OnSelect property of the Submit button as below:
SubmitForm(EditForm3);NewForm(EditForm3)
// If you want to edit a certain record within the Edit Form, you could consider setting the Item property of the Edit Form as below:
BrowseGallery1.Selected
Note: The BrowseGallery1 represents the Gallery in ViewItems Screen. You could edit the record when you select in the Gallery.
// If you just want to display a certain record once you submit the form, you could consider setting the OnSuccess and Item property of the Edit Form as below:
Refresh('Gym Pass') // OnSuccess property
Last('Gym Pass') // Item property
Note: 'Gym Pass' is my data source, please replace it with yours.
Hope it could help.
Best Regards,
Qi
WarrenBelz
109
Most Valuable Professional
Michael E. Gernaey
76
Super User 2025 Season 1
mmbr1606
71
Super User 2025 Season 1