DotNetNuke - Module settings disapear on new user control -
i have dnn module renders user control (view.ascx)
all ok ( logged in ) , dnn settings menu.
however when add control , load so:
string url = globals.navigateurl(portalsettings.activetab.tabid, "view_details", "mid=" + moduleid.tostring()); response.redirect(url);
i lose settings link when new control loads.
any ideas? there property somewhere turn on settings loaded user control?
when have "mid" in querystring, you're going using module isolation (i.e. module control show in edit skin's contentpane , module on page). when in module isolation, action menu doesn't include settings. fact of dnn.
you have couple of options. first, choose navigation method (see michael washington's old (but still good) module navigation options dotnetnuke® module article).
second, put own link settings on control. may able implement iactionable
, add action menu (i'm not sure if work), or can add sort of button or navigation bar module (potentially on of controls consistency).
are designing module general dnn community, or client isn't familiar dnn? people dnn experience won't expect able settings 1 they're "inside" module.
Comments
Post a Comment