New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.private void gridDataBoundGrid1_CellClick(object sender, GridCellClickEventArgs e) { //don''t sort col 2 if(e.RowIndex == 0 && e.ColIndex == 2) { e.Cancel = true; } }Now if you want to display a special cursor, you can do so by deriving the grid and overriding OnSetCursor. Here is a sample. You can add additional checks to narrow where you set the cursor.
>private void gridDataBoundGrid1_CellClick(object sender, GridCellClickEventArgs e) >{ > //don''t sort col 2 > if(e.RowIndex == 0 && e.ColIndex == 2) > { > e.Cancel = true; > } >} >> >Now if you want to display a special cursor, you can do so by deriving the grid and overriding OnSetCursor. Here is a sample. You can add additional checks to narrow where you set the cursor. >