Let’s say that I have “Customer” and “Order” tables. I have a “Customer” detail view that incorporates my “Order” table view.
When I select an order, I intercept the “Row Selected” event to do a few things before displaying the order. The last action in the custom action group is a “View Detail” action:
LINKTOROW([_THISROW], "Order - Detail")
The problem with this is that I would like to enable “Slideshow mode” in the “Order” detail view. Using LINKTOROW doesn’t apply a filter on the “Customer” column, so “Slideshow mode” allows me to scroll through every single “Order” record.
If I don’t override the “Row Selected” event and I just stick with the “Auto assign (View details)” action, it takes me to the correct row and limits the slideshow to only those orders that belong to the customer. There’s no way I can find in the API to mimic that behaviour (i.e., filter the view and go to this record).
Please either surface the “View details” action so I can use it in an action group or provide a function that combines LINKTOFILTEREDVIEW and LINKTOROW.
I expect that would work. My request to make “View details” a visible action the same way that “Add”, “Edit”, and “Delete” stands, though, as it would be a lot easier.