Search code examples
asp.netajaxtelerikdotnetnukeradgrid

Drag&Drop Grouping Animation Not Working


I enabled grouping on my RADGrid, but when I Drag & Drop a column, all I see is a "CrossHair" cursor while dragging. I do not see the animation visually showing a box representing the column being dragged, nor do I see the "double arrow" that appears showing you where the column is about to be dropped. Both these features I saw on the Telerik RADGrid Demo's, but I can seem to replicate this feature on my own RADGrid.

Help!


Solution

  • I know this is an old thread but I just recently found my answer.

    In the Module.css of my custom module, I added the following code:

    .RadGrid
    {
        z-index: 1000;
    }
    

    Apparently the default.css of the DNN framework makes the z-index of the module higher than the grid, which covers up the animation. Increasing the z-index to the grid itself places it above the module and thereby allows the animation to display once again.