Beispiel #1
0
        public ActionResult MyCustomPostBack(string type, JArray gridFields, JObject typeParams, int gridIndex, int gridPageSize)
        {
            var    Grid1     = UIHelper.Grid("Grid1");
            string sql       = string.Empty;
            var    ttbSearch = UIHelper.TwinTriggerBox("ttbSearchMessage");

            if (type == "trigger1")
            {
                ttbSearch.Text(String.Empty);
                ttbSearch.ShowTrigger1(false);
            }
            else if (type == "trigger2")
            {
                ttbSearch.ShowTrigger1(true);
                var triggerValue = typeParams.Value <string>("triggerValue");
                sql = " and (Name like '%" + triggerValue + "%' or Title like '%" + triggerValue + "%')";
            }

            Hashtable table = Sys_PowersDal.Search(gridIndex, gridPageSize, "Name", "DESC", sql);

            Grid1.DataSource(table["data"], gridFields);
            Grid1.RecordCount(Int32.Parse(table["total"].ToString()));
            Grid1.PageSize(gridPageSize);
            return(UIHelper.Result());
        }
Beispiel #2
0
        private void UpdateGrid(JArray Grid1_fields, int gridIndex, int gridPageSize)
        {
            var    Grid1 = UIHelper.Grid("Grid1");
            string sql   = string.Empty;

            //sql = sql + " and FDictID = " + Grid1_selectedRows;
            Hashtable table = Sys_PowersDal.Search(gridIndex, gridPageSize, "Name", "DESC", sql);

            Grid1.DataSource(table["data"], Grid1_fields);
            Grid1.RecordCount(Int32.Parse(table["total"].ToString()));
        }
Beispiel #3
0
        public ActionResult Index()
        {
            ViewBag.CorePowerNew    = CheckPower("CorePowerNew");
            ViewBag.CorePowerEdit   = CheckPower("CorePowerEdit");
            ViewBag.CorePowerDelete = CheckPower("CorePowerDelete");
            Hashtable table = Sys_PowersDal.Search(0, 20, "Name", "DESC", "");

            ViewBag.Grid1DataSource  = table["data"];
            ViewBag.Grid1RecordCount = Int32.Parse(table["total"].ToString());
            return(View());
        }
Beispiel #4
0
        public ActionResult Grid1_PageIndexChanged(JArray Grid1_fields, int Grid1_pageIndex, int gridPageSize)
        {
            var Grid1 = UIHelper.Grid("Grid1");

            string sql = string.Empty;

            //sql = sql + " and FDictID = " + selectedRowId;
            Hashtable table = Sys_PowersDal.Search(Grid1_pageIndex, gridPageSize, "Name", "DESC", sql);

            Grid1.DataSource(table["data"], Grid1_fields);
            Grid1.RecordCount(Int32.Parse(table["total"].ToString()));

            return(UIHelper.Result());
        }