RadControls for ASP.NET AJAX

RadControls for ASP.NET AJAX

The SolPartActions menu is the default context menu in dnn which appears on hover of the dropdown arrow of dnn modules:

solpartactions menu

We will show how to replace SolPartActions menu with RadMenuActions.

radmenuactions menu

The SolPartActions menu is set in the skin container.

Suppose that you use DNN 5.x with Minimal Extropy skin andTitle_Red container. Here are the steps necessary to replace SolPartActions menu with RadMenuActions:

1. Open Title_Red.ascx located at:

[my dnn web site]\Portals\_default\Containers\MinimalExtropy

2. Register the RadMenuActions module by adding:

CopyASPX
* * *
<%@ Register TagPrefix="dnn" TagName="RADMENUACTIONS" Src="~/DesktopModules/telerik.skinobjects/RadMenuActions.ascx" %> 
* * *

3. Replace

CopyASPX
<div class="c_actions">            
    <dnn:ACTIONS runat="server" ID="dnnACTIONS" ProviderName="DNNMenuNavigationProvider"                
        ExpandDepth="1" PopulateNodesFromClient="True" />        
</div>

with

CopyASPX
<div class="c_actions">    
    <dnn:RADMENUACTIONS runat="server" ID="dnnACTIONS" Skin="Hay"/>
</div>