sorting and column moving

Hello, I am working with GDBD and I have this problem. I using grid sorting with SortBehavior = GridSortBehavior.SingleClick but I can''t move columns. If I change SortBehavior at DoubleClick the column moving is ok. Do you have any idea ? Thanks a lot, Florin

2 Replies

AD Administrator Syncfusion Team November 10, 2005 10:22 AM UTC

If you are using version 3.3, you can both drag a column (just by mousing down on a column header and dragging - you do not have to select the columns first) and sort on a single click using these property settings: this.gridDataBoundGrid1.ControllerOptions |= GridControllerOptions.DragColumnHeader; this.gridDataBoundGrid1.SortBehavior = GridSortBehavior.SingleClick;


AD Administrator Syncfusion Team November 10, 2005 10:53 AM UTC

Clay thanks a lot ! It''s ok. >If you are using version 3.3, you can both drag a column (just by mousing down on a column header and dragging - you do not have to select the columns first) and sort on a single click using these property settings: > >this.gridDataBoundGrid1.ControllerOptions |= GridControllerOptions.DragColumnHeader; >this.gridDataBoundGrid1.SortBehavior = GridSortBehavior.SingleClick; >

Loader.
Up arrow icon