Exemplo n.º 1
0
        public ActionResult AddUserResetTab(string containerId = "MainArea")
        {
            var pvr = new Ext.Net.MVC.PartialViewResult
            {
                ViewName    = "UserResetPartial",
                Model       = repo_userc.GetUserActiveList(),
                ContainerId = containerId,
                RenderMode  = RenderMode.AddTo,
            };

            X.Mask.Hide();
            this.GetCmp <TabPanel>(containerId).SetLastTabAsActive();

            return(pvr);
        }
Exemplo n.º 2
0
 public ActionResult ReadActive()
 {
     try
     {
         return(this.Store(repo_user.GetUserActiveList()));
     }
     catch (System.Exception)
     {
         throw;
     }
 }