grid

          grid

            BlogJava :: 首頁 :: 聯系 :: 聚合  :: 管理
            78 Posts :: 0 Stories :: 62 Comments :: 0 Trackbacks
          表格:匯總行
                          
                                

          參考示例匯總行
                     

          Javascript處理          

          通常在表格的"load"數據加載完成事件中,更新表格的匯總信息:

          grid.on("load", onGridLoad);
          
          function onGridLoad(e) {
              var result = e.result;
              var grid = e.sender;
          
              var cellEl = grid.getSummaryCellEl("ageColumn");
              cellEl.style.cssText = "text-align:right";
              cellEl.innerHTML = "<span style='color:Brown;'>"
                              + 'Min=' + result.minAge + "<br/>"
                              + 'Max=' + result.maxAge + "<br/>"
                              + 'Avg=' + result.avgAge + "<br/>"
                              + "</span>";
          
              var cellEl = grid.getSummaryCellEl("totalColumn");
              cellEl.innerHTML = "總員工數:" + result.total;
          }
          
                 
                     

          服務端數據處理          

          在服務端返回表格分頁數據時,我們額外增加了一些屬性,比如minAge、maxAge、avgAge等,代碼如下:

          public Hashtable SearchEmployees(string key, int index, int size, string sortField, string sortOrder)
          {        
              ArrayList employees = ......;   //分頁后的數據
              int totalCount = ......;        //總記錄數
          
              Hashtable result = new Hashtable();
              result["data"] = employees;
              result["total"] = totalCount;
          
              //生成一些匯總信息
              ArrayList ages = DBUtil.Select("select min(age) as minAge, max(age) as maxAge, avg(age) as avgAge from t_employee");
              Hashtable ageInfo = ages[0] as Hashtable;
              result["minAge"] = ageInfo["minAge"];
              result["maxAge"] = ageInfo["maxAge"];
              result["avgAge"] = ageInfo["avgAge"];
          
              return result;
          }
          
          posted on 2012-11-09 16:07 nikofan 閱讀(4527) 評論(1)  編輯  收藏

          Feedback

          # re: jQuery MiniUI 開發教程 表格控件 表格:匯總行(八)[未登錄] 2015-09-25 11:40 111
          33  回復  更多評論
            


          只有注冊用戶登錄后才能發表評論。


          網站導航:
           
          主站蜘蛛池模板: 洮南市| 清丰县| 沿河| 迁西县| 通城县| 铜陵市| 罗江县| 平湖市| 蒲城县| 金山区| 安福县| 平远县| 建水县| 平安县| 长宁区| 思南县| 六盘水市| 班戈县| 元朗区| 章丘市| 武夷山市| 和顺县| 滁州市| 赤峰市| 黑河市| 海原县| 牟定县| 金乡县| 凉山| 长岛县| 新竹市| 自贡市| 时尚| 普安县| 苏州市| 开封县| 新竹市| 黄骅市| 柳州市| 凌云县| 达州市|