1. 程式人生 > >easyui Datagrid 表格高度計算及自適應頁面的實現

easyui Datagrid 表格高度計算及自適應頁面的實現

-o tco text pri ucc orm nat center yui

因為頁面上既要計算表格的高度,又要自適應瀏覽器大小,之前都都采用固定表格高度,這樣就會導致不同的分辨率電腦上看起來表格高矮不一,

所以采用了計算網頁高度和其他div 的高度之差作為表格的初始高度;

HTML部分:

<body class="gray-bg">
<div class="wrapper wrapper-content white-bg">
  
        <div class="search-head">
            <ul>
                <li class="w20" id="li_dateTime"
> <div class="input-group" id="date"> <span class="input-group-btn">日 期:</span> <input id="dateTime" type="text" class="easyui-datebox" th:value="${time}"/> </div> </
li> <li> <a href="javascript:Search();" id="selectAll" class="btn btn-outline btn-success" style="float: left;">查詢</a> </li> </ul> </div> <
div class="ibox-content"> <table id="List" class="easyui-datagrid"> </table> </div> </div> </body>

JS 部分:

$(function () {
    computeWidthAndHeight();
    initList();
    })
// 計算高度、寬度
function computeWidthAndHeight() {
    var width=Number($(".gray-bg").width())*0.96;// 獲取網頁的寬度
    var height=(Number($(".gray-bg").height())-Number($(".search-head").height()))*0.9; // 計算高度
    $("#List").datagrid({
        width : width,
        height : height
    });
 }
function initList() {
    var _options = {
        method: "POST",
        url: Url + "/test/test",
        idField: ‘xh‘,
        fit: true, //自動大小 ,開啟這個控制,就可自適應瀏覽器大小
        fitColumns: true,
        remoteSort: false,
        pageSize: 15,
        pageList: [15, 30, 50, 100, 200],
        pagination: true,//分頁控件
        rownumbers: true, //行號
        columns: [[
            {
                field: ‘xh‘, print: false, toExcel: false, width: 70, align: ‘Center‘,
                halign: ‘center‘,
                title: ‘學號‘
            },
            {
                field: ‘id‘, print: false, toExcel: false, width: 75, align: ‘center‘,
                halign: ‘center‘,
                title: ‘操作‘,
                formatter: function (value, row, index) {
                    button += ‘<a style="margin-left: 10px" name="opera1" onclick="Change(\‘‘ + row.xh + ‘\‘)" class="btn btn-outline btn-success" >編輯</a>‘;
                    return button;
                },
            }
        ]]
    };
    $(‘#List‘).datagrid(_options);
}

日常記錄,留待查閱~

easyui Datagrid 表格高度計算及自適應頁面的實現