dwr 动态创建表. 主键查询加载数据显示【javascript 中实现】
dwr 动态创建表的几个步骤:
前提 :dwr测试成功之后
步骤一: 在table中创建表结构,可供后面显示
如:
<thead>
<tr>
<th><input type=checkbox id="up"></th>
<th>用户名</th>
</tr>
</thead>
<tbody id="t">
</tbody>
步骤 二: 在javascript 中 创建列
如: var cell = [
function(y){return "<input type=checkbox name=chk class=chk value="+y.userid+">"},
function(y){return y.username}
]
说明: 在 "y" 是一个随便定义的变量 "userid" pojos包中类的属性 (要显示的列) 。下面同理
想创建几个列 就定义几个function 方法即可。
步骤三: 在javascript 方法 function 中调用dwr 中的方法(有参数查询显示),实现创建 如:
myjs.findAllById(id,function(x){
//清除 前一次的数据
DWRUtil.removeAllRows("t");
//tobody的id,json数组,cell随取列数组
DWRUtil.addRows("t",x,cell);
} );
完成这三步走就可以创建了!