我添加了一个新的按钮,将填充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的价值,并更改表的网址为“breakdown.php”我怎样才能做到这一点?提前致谢
试试这个样子,
view_breakdown()
{
$('#dg').datagrid({
url:'breakdown.php'});
}