Hi All,
I have just created a module and all is good. I add an action to the menu with this code...
Public ReadOnly Property ModuleActions() As DotNetNuke.Entities.Modules.Actions.ModuleActionCollection Implements DotNetNuke.Entities.Modules.IActionable.ModuleActions
Get
Dim Actions As New Entities.Modules.Actions.ModuleActionCollection
Actions.Add(
GetNextActionID,
"My New Action",
Entities.Modules.Actions.ModuleActionType.EditContent,
"",
"",
EditUrl(),
False,
SecurityAccessLevel.Edit,
True,
False
)
Return Actions
End Get
End Property
This places a third edit option that looks like a pencil and when I mouse over it, my new menu option shows up. How do I get it so that my new menu option appears between the Delete and Refresh action items in the list under the cog icon.
I hope that makes sense.
Thanks for your time.