_radDataGrid.ClientSettings.AllowColumnsReorder =
true;
_radDataGrid.ClientSettings.ReorderColumnsOnClient = true;
_radDataGrid.ClientSettings.ColumnsReorderMethod = GridClientSettings.GridColumnsReorderMethod.Reorder;
The columns are all defined programatically using templates. The header for most of the columns is also defined using a template. When attempting to drag and drop a column header from one to another for column reordering, the arrows (indicating the reorder placement) only appear when I place the cursor very close to the edge of any other header. In the examples - the user can simply drag over just about any location on the other headers. It seems that the templated headers are causing the draggable area to be almost non-existent. Is there are way to make the column reordering with drag and drop work with templated column headers?
Thanks.