Hello,
I'm following the code example from : http://demos.telerik.com/aspnet-ajax/grid/examples/programming/draganddrop/defaultcs.aspx
I have set up a ClientSettings tag and set the various flags as appropriate. Drag and drop is not working on my grid. Any ideas? I've pasted my RadGrad tag below.
Thanks in Advance!
 
                                I'm following the code example from : http://demos.telerik.com/aspnet-ajax/grid/examples/programming/draganddrop/defaultcs.aspx
I have set up a ClientSettings tag and set the various flags as appropriate. Drag and drop is not working on my grid. Any ideas? I've pasted my RadGrad tag below.
Thanks in Advance!
<telerik:RadGrid    ID="dgWorkflowItems"    runat="server"    ClientIDMode="Static"    AutoGenerateColumns="False"    EnableEmbeddedSkins="False"    EnableNoRecordsTemplate ="True"                          Visible="True"    Skin="bdbk"    OnRowDrop="dgWorkflowItems_OnRowDrop"    OnPreRender="dgWorkflowItems_OnPreRender"    OnNeedDataSource="dgWorkflowItems_OnNeedDataSource">         <ClientSettings AllowRowsDragDrop="true" EnableRowHoverStyle="false" >        <Selecting AllowRowSelect="true" EnableDragToSelectRows="true" />        <ClientEvents OnRowDropping="onRowDropping" />    </ClientSettings>    <MasterTableView TableLayout="Fixed">        <NoRecordsTemplate >           <div style="height:30px;">No Contributions found for this meeting.</div>        </NoRecordsTemplate>        <Columns>            <telerik:GridBoundColumn DataField="ContributionKey"                Visible="False"                DataType="System.Int32"                HeaderText="ContribKey" UniqueName="ContribKey">            </telerik:GridBoundColumn>            <telerik:GridCheckBoxColumn                UniqueName="CheckForSubmit"                HeaderText="Submit"                HeaderStyle-Width="3em"                HeaderTooltip="Select items to submit for review and click the submit button below."                />            <telerik:GridBoundColumn HeaderText="Subject/Bookmark"                UniqueName="SubjectBookmark"                DataField="Description"                ></telerik:GridBoundColumn>            <telerik:GridBoundColumn                DataField="Status"                UniqueName="Status"                HeaderText="Status">            </telerik:GridBoundColumn>            <telerik:GridBoundColumn                HeaderText="Document"                UniqueName="Document"                HeaderStyle-Width="6em"                DataField="DocumentName"></telerik:GridBoundColumn>            <telerik:GridBoundColumn                HeaderText="Instructions"                UniqueName="Instructions"                DataField="Instructions">            </telerik:GridBoundColumn>            <telerik:GridBoundColumn                HeaderText="Contributor"                DataField="Contributor"                UniqueName="Contributor"                ></telerik:GridBoundColumn>            <telerik:GridBoundColumn                DataField="ContributionType"                UniqueName="ContributionType"                Visible="False"                >            </telerik:GridBoundColumn>        </Columns>    </MasterTableView></telerik:RadGrid>