Hi, I'm struggling to figure out what I did to cause my Settings menu pick to disappear from my module's context action menu.
I am developing using VS 2008, SqlServer 2005 and DNN 5.0.0.
Presently I only see an edit (pencil) icon with no associated text and the Help menu pick.
Here is the code in my Viewxxx.ascx module:
''' -----------------------------------------------------------------------------
Partial Class ViewLadder
Inherits Entities.Modules.PortalModuleBase
Implements Entities.Modules.IActionable
....
Public ReadOnly Property ModuleActions() As Entities.Modules.Actions.ModuleActionCollection Implements Entities.Modules.IActionable.ModuleActions
Get
Dim Actions As New Entities.Modules.Actions.ModuleActionCollection
Actions.Add(GetNextActionID, Localization.GetString(Entities.Modules.Actions.ModuleActionType.AddContent, LocalResourceFile), Entities.Modules.Actions.ModuleActionType.AddContent, "", "", EditUrl(), False, Security.SecurityAccessLevel.Edit, True, False)
Return Actions
End Get
End Property
....
I have a Settings.ascx user control that is registered with a Key of Settings and the Type set to Edit.
Any help is greatly appreciated.