I have created a model driven app, and this has multiple layers of entities/relationships.
and the user start by entity a, and have a grid list with a list of entity b, and then open one form from entity b by double clicking on the grid, and then using the record set option to navigate between the list of entity b records.
and then by each form of entity b there are a grid list with a list of entity c.
and the user double click on the grid and open the form from entity c and the record set stay open but with the new list of entity c.
so, I want now to add ribbon button that should take back the user after finishing fill out all forms from entity c with the values, to the entity b form, but the record set of entity b should stay open.
with the list of entity b records
i already try to use Xrm.Navigation.openForm() and also Xrm.Navigation.navigateTo()
but this opens the Entity b form, but the record set option disappears.
so, my question is how can i make navigation like the double click on a grid control row / pressing on the primary column in the grid control.