zoukankan      html  css  js  c++  java
  • Easyui的分页

    Easyui的分页

    easyui的class的easyui-datagrid自带分页属性。可以直接用

    属性:

     
    标题 类型 描述
     fitColumns boolean    设置为 true,则会自动扩大或缩小列的尺寸以适应网格的宽度并且防止水平滚动。
     singleSelect boolean   设置为 true,则只允许选中一行。
     rownumbers boolean   设置为 true,则显示带有行号的列。
     pagination  boolean  设置为 true,则在数据网格(datagrid)底部显示分页工具栏。
     pageSize number  当设置了 pagination 属性时,初始化页面尺寸。
     pageNumber number   当设置了 pagination 属性时,初始化页码。
     striped boolean   设置为 true,则把行条纹化。(即奇偶行使用不同背景色)
     fitColumns boolean   自适应大小,填充容器
    url  string  方法位置返回为MyJsonResult.Json
    <div id="DicId">
        <table id="tb_datagrid" class="easyui-datagrid"
               data-options="toolbar:'#DivId',
                                fitColumns:false,
                                singleSelect:false,
                                rownumbers:true,
                                pagination:true,
                                pageSize:20,
                                pageNumber:1,
                                striped:false,
                                fit:true,
                                total:100,
                                url: 'GetList'">
            <thead>
                <tr>
                    <th data-options="field:'checked',checkbox:true"></th>
                    <th data-options="field:'Id',120">Id</th>
                    <th data-options="field:'Name',hidden:true">名字</th>
                </tr>
            </thead>
        </table>
    </div>
  • 相关阅读:
    【洛谷P4887】【模板】莫队二次离线(第十四分块(前体))
    查询数据库表大小
    java程序使用ssl证书连接mysql
    win32- 函数运行速度测试
    回调函数是嘛东西
    win32-读取控制台中所有的字符串
    关于 websocket 的一些学习
    idea下载地址
    ida 重新定义
    P1650 田忌赛马(贪心)
  • 原文地址:https://www.cnblogs.com/mvpbest/p/15438086.html
Copyright © 2011-2022 走看看