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>
  • 相关阅读:
    phpcms V9实现QQ登陆OAuth2.0
    PHP程序员的技术成长规划(送给迷茫的你)
    php实现冒泡排序
    php实现堆排序
    网络抓包以及进行简单数据分析
    网络编程之套接字(tcp)
    网络编程之套接字(udp)
    C语言之位运算
    linux线程及互斥锁
    嵌入式常用英文缩写及单词整理
  • 原文地址:https://www.cnblogs.com/mvpbest/p/15438086.html
Copyright © 2011-2022 走看看