GridDataBoundGrid CurrentCell

I have 2 GridDataBoundGrid controls on a form setup for showing a master-detail relationship. I do not want to show the details data until a user actually selects a row on the master grid. (It is a fair bit of data and I am only retrieving the details as they request them by clicking a row on the master grid). However, when the master grid first comes up, the CurrentCell is automatically set to cell 1,1. Thus triggering me to retrieve the details for the first row. Is it possible to not have a current cell when a grid first shown and to make my users select a row to see the details? Thanks, Brian

1 Reply

AD Administrator Syncfusion Team September 15, 2005 06:56 AM UTC

Hi Brian, Try this in your code and see if this helps masterGrid.CurrentCell.MoveTo(-1,-1); Best regards, Stanley

Loader.
Up arrow icon