利用easyui来显示一个table

Posted wwqqnn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用easyui来显示一个table相关的知识,希望对你有一定的参考价值。

1  在使用easyui之前必须要导入压缩好的完整的easy-ui的js包。

2 其次要在html页面中引入

具体操作如下:

<title>Basic Panel - jQuery EasyUI Demo</title>
<link rel="stylesheet" type="text/css"
    href="/script/jquery-easyui-1.5.2/themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="/script/jquery-easyui-1.5.2/themes/icon.css">
<script type="text/javascript" src="/script/jquery-easyui-1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="/script/jquery-easyui-1.5.2/jquery.easyui.min.js"></script>
</head>

3 准备数据,把要表示成为table的对象在数据库中建立一个表。最好是数据库中的列的名称与对象属性同名。

技术分享

这样有时候就可以避免一些因为粗心导致的错误。

4.创建 DataGrid 来显示用户信息.

在这里<th field="firstname" width="50">First Name</th>

field的值就是指的对象的属性值,所以field后面就是跟的是对象属性就是上面例子中的fistname(fistname是user的一个属性)。

而First Name在这里表示的是table中的列名,这个理论上可以是任意的值,但通常我们会根据具体的需求来给他来付一个很直观的列名。

<table id="dg" title="My Users" class="easyui-datagrid" style="width:550px;height:250px" url="get_users.php" toolbar="#toolbar" rownumbers="true" fitColumns="true" singleSelect="true"> <thead> <tr> <th field="firstname" width="50">First Name</th> <th field="lastname" width="50">Last Name</th> <th field="phone" width="50">Phone</th> <th field="email" width="50">Email</th> </tr> </thead> </table> <div id="toolbar"> <a href="#" class="easyui-linkbutton" iconCls="icon-add" plain="true" onclick="newUser()">New User</a> <a href="#" class="easyui-linkbutton" iconCls="icon-edit" plain="true" onclick="editUser()">Edit User</a> <a href="#" class="easyui-linkbutton" iconCls="icon-remove" plain="true" onclick="destroyUser()">Remove User</a> </div>

在这里我们不需要写任何的JavaScript代码就可以显示出 一个table,如下图:

技术分享

以上是关于利用easyui来显示一个table的主要内容,如果未能解决你的问题,请参考以下文章

easyui写的页面dialog,单独可以打开可以显示右下角的table,但是通过点击打开的dialog就不能显示table了

jquery easyui datagrid/table 右边线显示不全

easyui的学习总结

easyui-datagrid分页部分翻页按钮不显示

easyui-属性表格-easyui-propertygrid-列名显示英文官方文档无修改方案

EasyUI怎么使用datagrid来定制生成一个table