Hello Everyone,
I've been building a canvas app on dataverse table. I have 3 screens, Dashboard, RequestScreen and SuccessScreen. I would like to use the RequestScreen for user to enter a new record and upon submission I would like to navigate to Dashboard screen. From the gallery on dashboard I would like to view the selected item from the gallery on the same requesterscreen/form.
I have ID(Unique ID/Auto number) column on data verse table.
And the gallery menu code is :
ClearCollect(MenuGal,{
Row:1
Title:"All Requests",
ScreenName:DasboardScreen
},
{
Row:2
Title:"New Request",
ScreenName:RequestScreen
}
)
Also, I've used gallery menu for navigation where I can click on a button to create a new record.
Can anyone please help me with this. Thank you so much in advance!