zoukankan      html  css  js  c++  java
  • Transform DataGrid 套用格式

    <table class="easyui-datagrid" title="Transform DataGrid" style="500px;height:auto" data-options="fitColumns:false,rownumbers:true,singleSelect:true,collapsible:true,iconCls:'icon-save'">
        <thead>
            <tr>
                <th data-options="field:'itemid',100">Item ID</th>
                <th data-options="field:'productid',100">Product</th>
                <th data-options="field:'listprice',100,align:'right'">List Price</th>
                <th data-options="field:'attr1',168">Attribute</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>EST-1</td>
                <td>FI-SW-01</td>
                <td>36.50</td>
                <td>Large</td>
            </tr>
            <tr>
                <td>EST-10</td>
                <td>K9-DL-01</td>
                <td>18.50</td>
                <td>Spotted Adult Female</td>
            </tr>
            <tr>
                <td>EST-11</td>
                <td>RP-SN-01</td>
                <td>28.50</td>
                <td>Venomless</td>
            </tr>
            <tr>
                <td>EST-12</td>
                <td>RP-SN-01</td>
                <td>26.50</td>
                <td>Rattleless</td>
            </tr>
            <tr>
                <td>EST-13</td>
                <td>RP-LI-02</td>
                <td>35.50</td>
                <td>Green Adult</td>
            </tr>
        </tbody>
    </table>

    fitColumns  并不能正确设置所有列宽,应手工设置列宽,调整至合适,并在各版本浏览器测试。

  • 相关阅读:
    HDU1106 排序
    HDU2050 折线分割平面
    HDU2048 神、上帝以及老天爷
    POJ1836 Alignment
    POJ1182 食物链
    HDU2067 小兔的棋盘
    HTML中的ID不能以数字开头
    automake,autoconf使用详解
    How to install Samba server on Ubuntu 12.04
    Netbeans使用UTF-8编码
  • 原文地址:https://www.cnblogs.com/dotnetmvc/p/3633583.html
Copyright © 2011-2022 走看看