首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

easyui给DataGrid 的th添width长度

2012-12-26 
easyui给DataGrid 的th加width长度table stylewidth:500pxheight:250px idtttheadtr stylet

easyui给DataGrid 的th加width长度
<table 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>

热点排行