public ActionResult Grouping()
 {
     var o = new GridDemoGroupingCfgInput { Groupable = true, ShowGroupedColumn = false, ShowGroupBar = true,
         PersonGrouped = true, PersonRem = true, PersonGroupable = true, PersonRank = 1,
         FoodGrouped = false, FoodRem = true, FoodGroupable = true,
         PageSize = 15
         };
     return View(o);
 }
Exemple #2
0
        public ActionResult Grouping()
        {
            var o = new GridDemoGroupingCfgInput {
                Groupable     = true, ShowGroupedColumn = false, ShowGroupBar = true,
                PersonGrouped = true, PersonRem = true, PersonGroupable = true, PersonRank = 1,
                FoodGrouped   = false, FoodRem = true, FoodGroupable = true,
                PageSize      = 15
            };

            return(View(o));
        }
 public ActionResult GroupingContent(GridDemoGroupingCfgInput input)
 {
     return View(input);
 }
Exemple #4
0
 public ActionResult GroupingContent(GridDemoGroupingCfgInput input)
 {
     return(View(input));
 }