On a drag and drop, how can I control the layout of the row being dragged? Below is my master grid, please note that the first column is only 18px wide. When dragging the first column becomes 1/2 the width of the grid. How can I force the same layout for the row being dragged?
Thanks
Thanks
<telerik:RadGrid runat="server" ID="grdKCGs" AllowPaging="False" Width="100%" AllowMultiRowSelection="false">
<MasterTableView DataKeyNames="TopicKCGID" Width="100%" TableLayout="Fixed" AutoGenerateColumns="false">
<Columns>
<telerik:GridDragDropColumn HeaderStyle-Width="18px"></telerik:GridDragDropColumn>
<telerik:GridBoundColumn UniqueName="TopicKCGID" DataField="TopicKCGID" Visible="false" />
<telerik:GridBoundColumn UniqueName="KCGDescription" DataField="KCGDescription" HeaderText="Description" ReadOnly="true" />
</Columns>
</MasterTableView>
<ClientSettings AllowRowsDragDrop="true">
<Selecting AllowRowSelect="True" EnableDragToSelectRows="false" />
</ClientSettings>
</telerik:RadGrid>