Home › Forums › WinForms controls › Xceed Grid for WinForms › Prevent DetailGrid sorting to affect all detail grids
Is there a way to limit the sorting of the detail grid columns to only the detail grid whose column header is clicked?
Right now, all the detail grids rows sort when any of the detail grids columns are clicked.
Thanks
Imported from legacy forums. Posted by rbh (had 1876 views)
To get this behavior, you can set your detail grids in asynchronous mode.
<code>gridControl1.SynchronizeDetailGrids = false;gridControl1.UpdateDetailGrids();</code>
Imported from legacy forums. Posted by CharlesB (had 2858 views)