I am having problems developing using RadGrid in DotNetNuke, some of the CSS effects just do not work. e.g. I have a RadGrid that allows users to drag and drop columns to Group pane to create data grouping, while users drag the column, some cursor should show up, right? In DotNetNuke, nothing happens, but the drag and drop still works.
I posted this to DotNetNuke forum, but they don't seem to know much about using RadGrid, I thought I might try my luck here.
Thanks
5 Answers, 1 is accepted
Have you tried the same grid declaration on a regular web page to confirm that the issue is only with DNN? Can you also paste your grid declaration, so that we can test it locally?
Kind regards,
Tsvetina
the Telerik team
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

<
telerik:RadGrid
ID
=
"radGrid"
AutoGenerateColumns
=
"true"
runat
=
"server"
ShowGroupPanel
=
"true"
DataSourceID
=
"dataSource1"
>
<
ClientSettings
AllowDragToGroup
=
"true"
></
ClientSettings
>
</
telerik:RadGrid
>
<
asp:SqlDataSource
runat
=
"server"
ID
=
"dataSource1"
ProviderName
=
"System.Data.SqlClient"
ConnectionString
=
"Data Source=localhost;Initial Catalog=DNN6C;User ID=sa;Password=v123x321"
SelectCommand
=
"select * from desktopmodules"
/>
Try to drag a column and drop into group pane
I tried replicating the problem using a simple grid like yours but to no avail. You can take a look at the below video and let me know if I am missing something out:
Kind regards,
Tsvetina
the Telerik team
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

Thanks Again
Indeed there is such problem with a RadGrid in DNN 6.0. We tracked it down to a z-index setting in the .DnnModule class inside the default.css file (~\Portals\_default\default.css) that makes the whole module's z-index higher than the z-index of the div used to indicate dragging. This issue was not present in the previous versions of DNN as you saw from the previously posted video.
You can work around it by adding the following CSS style inside your site's stylesheet:
.rgHeaderOver
{
z-index
:
1000
;
}
Greetings,
Tsvetina
the Telerik team
Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>