I have a canvas app with Dataverse as the data source. There are 2 screens on Screen1 I have a gallery and the data source is Task table. Once a record is selected in the gallery I am navigating to Screen2 where some additional details is displayed for the selected record. Following is the code for gallery OnSelect property
UpdateContext({
displayTask: ThisItem
});
When I navigate to the Screen2 I see the loading dots on top of the screens for 1-2 minutes and the app is loading something. When I opened the monitor view for the canvas app. I see a lot of rows for "getNavigatedRowInTableRow" operation. I tried to find the documentation but could not find anything.
If know what this operation is I can somehow fix the issue and get rid of the 1-2 minutes of loading in Screen2
Solved! Go to Solution.
@Usman2 , updatecontext function will initiate a local variable and you can't use it on another screen. Use Set function instead to put the selected record in a global variable. >> Set( displayTask, ThisItem )
@Usman2 , updatecontext function will initiate a local variable and you can't use it on another screen. Use Set function instead to put the selected record in a global variable. >> Set( displayTask, ThisItem )
Does anyone have a good answer for this question? I have the same issue. There is no help on the MS site and even a google search does not show any useful information about the getNavigatedRowInTableRow operation.
Hello, @Donn, please create a new post and explain your issue using some screenshots. You can also tag me if you want to.
User | Count |
---|---|
19 | |
15 | |
14 | |
10 | |
8 |
User | Count |
---|---|
39 | |
30 | |
22 | |
20 | |
16 |