Navigate from an ExplicitPanel back to an Administrative Panel

I have an explicit panel loaded from an administrative panel.  Wondering how, if I do some sort of AJAX save on my explicit panel I can go back to the previous panel and reload it.

Parents Reply
  • So is there an administrative javascript call to navigate to a new panel?  Right now I'm using a text link I get from something like this:

                public string LearningLevelEdit(int levelId)
                {
                    NameValueCollection nvc = new NameValueCollection();
                    nvc.Add("LearningLevelId", levelId.ToString());
                    return PluginManager.Get<Panels.Management.LearningLevelCreateEdit>().FirstOrDefault().GetNavigateUrl(nvc);
                }

Children