当前位置: 代码迷 >> Web前端 >> easyui给DataGrid 的th添width长度
  详细解决方案

easyui给DataGrid 的th添width长度

热度:402   发布时间:2012-12-26 14:39:28.0
easyui给DataGrid 的th加width长度
<table class="easyui-datagrid" style="width:500px;height:250px" id="tt">
      <thead>
      <tr style="text-align: center;">
      <th field="fldAppDept" width="100">账号</th>
      <th field="fldAppDept" width="100">姓名</th>
      <th field="fldAppDept" width="100">性别</th>
      <th field="fldAppDept" width="200">操作</th>
      </tr>
     
     
      <s:iterator value="userlist">
      <tr style="text-align: center;width: 100%;">
      <th field="fldAppDept" width="100"><s:property value="account"/></th>
      <th field="fldAppDept" width="100"><s:property value="name"/></th>
      <th field="fldAppDept" width="100"><s:property value="sex"/></th>
      <th field="fldAppDept" width="200">
      <a href="#">详细信息</a>
      <a href="#">删除</a>
      </th>
      </tr>
     
      </s:iterator>
      </thead>
      </table>
  相关解决方案