Exemplo n.º 1
0
 public ActionResult List(GridCommand command, RoleSearchModel searchModel)
 {
     SearchCacheModel searchCacheModel = this.ProcessSearchModel(command, searchModel);
     if (searchCacheModel.isBack == true)
     {
         ViewBag.Page = searchCacheModel.Command.Page==0 ? 1 : searchCacheModel.Command.Page;
     }
     ViewBag.PageSize = base.ProcessPageSize(command.PageSize);
     return View();
 }
Exemplo n.º 2
0
        /// <summary>
        /// the  method  for  Serach Roles  by  Condition
        /// </summary>
        /// <param name="command">GridCommand</param>
        /// <param name="searchModel">RoleSearchModel</param>
        /// <returns>searchStatementModel</returns>
        private SearchStatementModel PrepareSearchStatement(GridCommand command, RoleSearchModel searchModel)
        {
            string whereStatement = string.Empty;
            IList<object> param = new List<object>();
            HqlStatementHelper.AddLikeStatement("Code", searchModel.Code, HqlStatementHelper.LikeMatchMode.Start, "u", ref whereStatement, param);
            HqlStatementHelper.AddEqStatement("Type", searchModel.Type, "u", ref whereStatement, param);

            string sortingStatement = HqlStatementHelper.GetSortingStatement(command.SortDescriptors);
            SearchStatementModel searchStatementModel = new SearchStatementModel();
            searchStatementModel.SelectCountStatement = selectCountStatement;
            searchStatementModel.SelectStatement = selectStatement;
            searchStatementModel.WhereStatement = whereStatement;
            searchStatementModel.SortingStatement = sortingStatement;
            if (string.IsNullOrWhiteSpace(sortingStatement))
            {
                searchStatementModel.SortingStatement = " order by u.Code ";
            }
            searchStatementModel.Parameters = param.ToArray<object>();
            return searchStatementModel;
        }
Exemplo n.º 3
0
 public ActionResult _AjaxList(GridCommand command, RoleSearchModel searchModel)
 {
     string replaceFrom = "_AjaxList";
     string replaceTo = "List";
     this.GetCommand(ref command, searchModel, replaceFrom, replaceTo);
     SearchStatementModel searchStatementModel = this.PrepareSearchStatement(command, searchModel);
     return PartialView(GetAjaxPageData<Role>(searchStatementModel, command));
 }
Exemplo n.º 4
0
 public ActionResult _AjaxList(GridCommand command, RoleSearchModel searchModel)
 {
     SearchStatementModel searchStatementModel = this.PrepareSearchStatement(command, searchModel);
     return PartialView(GetAjaxPageData<Role>(searchStatementModel, command));
 }
Exemplo n.º 5
0
 public ActionResult List(GridCommand command, RoleSearchModel searchModel)
 {
     return View();
 }
Exemplo n.º 6
0
 public ActionResult List(GridCommand command, RoleSearchModel searchModel)
 {
     SearchCacheModel searchCacheModel = this.ProcessSearchModel(command, searchModel);
     ViewBag.PageSize = base.ProcessPageSize(command.PageSize);
     return View();
 }