I have AllowRowsDragDrop enabled on my grid, but have the need to disable it on a row by row basis
in my Grid I have a GridCheckBoxColumn
on the basis of this checkbox state I want to disable darg and drop feature of row please suggest me how can I check the state of this checkbox ?
I want to use this condition in below function to disable drag and drop feature on row
in my Grid I have a GridCheckBoxColumn
<
telerik:GridCheckBoxColumn DataField="IsChildDictionary" Visible="false" UniqueName="IsChildDictionary" DataType="System.Boolean" AllowFiltering="false">
on the basis of this checkbox state I want to disable darg and drop feature of row please suggest me how can I check the state of this checkbox ?
I want to use this condition in below function to disable drag and drop feature on row
function OnRowDragStarted(sender, eventArgs) |
{ |
} |