예제 #1
0
        public ActionResult GetStates(JqGridSettings gridSettings)
        {
            var states = DatabaseDAL.GetAllStates();
            var stateList = new List<State>();
            foreach (var state in states)
            {
                stateList.Add(state);
            }

            int totalPages;
            int totalRecords;
            var allStates = stateList.AsQueryable();

            var results = jqGridDataManager.GetGridData<State>(gridSettings, allStates, out totalPages, out totalRecords);
            JqGridResult result = new JqGridResult()
            {
                Page = gridSettings.PageIndex,
                Records = totalRecords,
                Total = totalPages,
                Rows = results.ToList()
            };

            return Json(result, JsonRequestBehavior.AllowGet);

        }
예제 #2
0
        public ActionResult GetCustomers(JqGridSettings gridSettings)
        {
            int totalPages;
            int totalRecords;
            var allProducts = DatabaseDAL.GetAllProductModels();

            var results =
                jqGridDataManager.GetGridData<ProductModel>(gridSettings,
                                                            allProducts,
                                                            out totalPages,
                                                            out totalRecords);
            JqGridResult result = new JqGridResult()
            {
                Page = gridSettings.PageIndex,
                Records = totalRecords,
                Total = totalPages,
                Rows = results.ToList()
            };

            return Json(result, JsonRequestBehavior.AllowGet);
        }