mouse cursor symbol (rectangle)

Hello, I use the GridDataBoundGrid in ReadOnly mode (just row selection). The mouse cursor shows additionally a recangle, when I move the mouse to the top or bottom border of the current selected row. Is is possible to turn off this functionality? Thanks, Matthias

1 Reply

AD Administrator Syncfusion Team August 9, 2005 02:18 PM UTC

One way you can do this is to uncheck the OleDataSource flag in the grid.ControllerOptions property. this.gridControl1.ControllerOptions = GridControllerOptions.All & ~GridControllerOptions.OleDataSource; or in VB.NET Me.gridControl2.ControllerOptions = GridControllerOptions.All And Not GridControllerOptions.OleDataSource

Loader.
Up arrow icon