BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
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. >