I need help on Drag and Drop feature for RadGrid, Please is the my requirement.
We have 140 columns in a table, we need to show them in RadGrid based on the user choice by dragging from RadListBox.
We need to have a accessibility to drag columns from RadListBox to RadGrid to show selected columns and also drag column from RadGrid to RadListBox to hide columns from Grid.
I have achieved to show selected column from RadListBox but I donot have idea to hide columns based on dragging from RadGrid to RadListBox, Please help me on this.
Thanks,
Kiran

document.onkeydown = function (e) { e = e || window.event; if (typeof e != 'undefined') { var tgt = e.target || e.srcElement; // If the keypress was ENTER (13) or DOWN (40) if (e.keyCode == 13 || e.keyCode == 40) { // Determine which element we're currently on currentField = e.target; alert(currentField.type); } }}<paragraphs> <paragraph name="<blockquote>Block Quote (Full)</blockquote>" value="<blockquote>" /> <paragraph name="<blockquote class='floatright'>Block Quote (Float Right)</blockquote>" value="<blockquote class='floatright'>" /> <paragraph name="<blockquote class='floatright'>Block Quote (Float Left)</blockquote>" value="<blockquote class='floatleft'>" /></paragraphs><formatSets> <formatSet tag="blockquote" title="<blockquote>Block Quote (Full)</blockquote>" /> <formatSet tag="blockquote" title="<blockquote>Block Quote (Float Right)</blockquote>"> <attributes> <item name="class" value="floatright" /> </attributes> </formatSet> <formatSet tag="blockquote" title="<blockquote>Block Quote (Float Left)</blockquote>"> <attributes> <item name="class" value="floatleft" /> </attributes> </formatSet></formatSets><telerik:RadOrgChart ID="RadOrgChart1" runat="server" EnableDragAndDrop="True" OnGroupItemDrop="RadOrgChart1OnGroupItemDrop" OnNodeDrop="RadOrgChart1OnNodeDrop" DisableDefaultImage="True" GroupColumnCount="2"> <GroupEnabledBinding> <NodeBindingSettings DataFieldID="TeamID" DataFieldParentID="ReportsTo" DataSourceID="TeamDataSource"/> <GroupItemBindingSettings DataFieldID="StaffID" DataFieldNodeID="TeamID" DataTextField="Name" DataSourceID="StaffDataSource"/> </GroupEnabledBinding> <RenderedFields> <NodeFields> <telerik:OrgChartRenderedField DataField="TeamName"/> </NodeFields> </RenderedFields> <ItemTemplate> <span><%#DataBinder.Eval(Container.DataItem, "Name")%></span> <br /> <span><%#DataBinder.Eval(Container.DataItem, "IsSupervisor").ToString() == "True" ? "Supervisor" : ""%></span> </ItemTemplate></telerik:RadOrgChart>