jQuery easy ui的弹出框如何根据参数动态取值?
本帖最后由 xzs7190966 于 2013-11-06 15:06:47 编辑 页面用的是freemarker
这是那个easy ui的datagrid的div 我把它放在弹出层中
<div class="box">
<table id="vt" class="easyui-datagrid" style="width:800px;height:400px"
url="" title="回访" iconCls="icon-tip" rownumbers="true" pagination="true" singleSelect="true">
<thead>
<tr>
<th field="followId" width="80">xxx</th>
<th field="visitId" width="80">xxx</th>
<th field="situation" width="120" align="right">xx</th>
<th field="followTime" width="120" align="right">xxx</th>
<th field="principalId" width="140" align="right">xxx</th>
<th field="memo" width="200">xxxx</th>
<th field="followId" width="100" align="center" formatter="formatOper">操作</th>
</tr>
</thead>
</table>
</div>
function queryFollowForm(visitId){
$('#vt').attr("url","<@url value='/visitFollow/getData?visitId="+visitId+"/>'");
$('#vt').datagrid('reload');
$('#m').window('open');
}