Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1165
Keeping Card Row Visible Near Bottom Of Grid
posted

I have a grid that only displays a single card row at a time.  When the user clicks on a parent cell, the corresponding card row for that cell becomes visible below it.  When the user clicks on another cell, the first card row hides and the card row corresponding to the new cell becomes visible.

I need the parent cell that corresponds with the card row to be the active row/cell, but I also need the card row to be visible to the user.  The problem I'm having is, if the card row is located near the bottom of the grid, only the top of the card row is visible when the grid loads, forcing the user to scroll to see the information.

I've tried using

ugStepInfo.Rows.ScrollCardIntoView(ugStepInfo.Rows.FirstVisibleCardRow)

but it doesn't seem to do the trick.