// GET: Grouping
        public ActionResult Grouping()
        {
            var inventor = InventorDetails.GetAllRecords();

            ViewBag.datasource = inventor;
            return(View());
        }
示例#2
0
        // GET: CheckboxSelection
        public ActionResult CheckboxSelection()
        {
            var inventor = InventorDetails.GetAllRecords();

            ViewBag.datasource = inventor;
            return(View());
        }
        public IActionResult SelectionAPI()
        {
            var inventor = InventorDetails.GetAllRecords();

            ViewBag.datasource = inventor;
            return(View());
        }
        public IActionResult Grouping()
        {
            var inventor = InventorDetails.GetAllRecords();

            ViewBag.datasource  = inventor;
            ViewBag.alertbutton = new
            {
                content   = "OK",
                isPrimary = true
            };
            return(View());
        }