Hi,
I am wanting my app to move to a different detail view based on row values. I have a column (called version) which states if the row is not shared, or calculation shared or final result shared. I want to click on a row in the summary table (which the not shared results have been removed via a slice)
And the it take me to the correct view. Ie if the version is calculation shared it needs to take me to the detail view of row showing columns applicable to the calculation or if the version is final result shared it needs to take me to the detail view of row showing columns applicable to the calculation and final result)
My first attempt with this has been to use a show if to identify the applicable detailed view
Which obviously did not work since Show if for views are not evaluated in the context of any particular row.
I then tried the following-
Any clues on how I can get a detailed view which is dependent on the row input information?
In short: I want to click on a row of type A and get a detailed view of type A, and click on a row of type B and get a detailed view of type B.
Solved! Go to Solution.
If you want to open a view with a specific row as well, you should use LINKTOROW() instead of LINKTOVIEW().
Have you tried to use LINKTOVIEW deep link action? Please check this article below. You can create an action and choose that action with the โEvent actionโ when the row is clicked. The โEvent actionโ option you will find from the table viewโs definition.
Perfect, thank you.
I think I am missing a step maybe
This is the action expression I am using
Ifs([Version]=โClack Sharedโ,LINKTOVIEW(โREC Sliced detail calc onlyโ),OR([Version]=โSharedโ,[Version]=โFull Detail Sharedโ),LINKTOVIEW(โREC Sliced detail fullโ))
Simply linking to a view does not solve the issue- it takes me to the correct view based on my row but not the correct row (Ie if I click on a row of type B it takes me to the view type B- but not the row I clicked on- it takes me to the first row).
If you want to open a view with a specific row as well, you should use LINKTOROW() instead of LINKTOVIEW().
Thanks
User | Count |
---|---|
16 | |
7 | |
6 | |
4 | |
3 |