示例#1
0
 public ActionResult ReadPending()
 {
     try
     {
         return(this.Store(repo_user.GetUserPendingList()));
     }
     catch (System.Exception ex)
     {
         throw ex;
     }
 }
示例#2
0
        public ActionResult AddUserPendingTab(string containerId = "MainArea")
        {
            var pvr = new Ext.Net.MVC.PartialViewResult
            {
                ViewName    = "UserApprovePartial",
                Model       = repo_userc.GetUserPendingList(),
                ContainerId = containerId,
                RenderMode  = RenderMode.AddTo,
            };

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