我正在使用easyui datagrid
我添加了一个新按钮,它会根据您选择的行在数据网格中填充另一组数据。
这是按钮:
a href="#" class="easyui-linkbutton" iconCls="icon-edit" plain="true" onclick="view-breakdown()">View Breakdown</a>
这是我的表:
<table id="dg" title="My Users" class="easyui-datagrid" style="width:980px;height:370px;"
url="get_users.php"
toolbar="#toolbar" pagination="true"
rownumbers="true" fitColumns="true" singleSelect="true" height="auto";>
<thead>
<tr>
<th field="item_group_desc" width="50">item description</th>
</tr>
</thead>
</table>
我希望函数view_breakdown()获取item_group_desc的值并将表的url更改为“breakdown.php” 我怎样才能做到这一点?提前谢谢
答案 0 :(得分:0)
尝试这样,
view_breakdown()
{
$('#dg').datagrid({
url:'breakdown.php'});
}