1

我正在使用easyui数据网格

我添加了一个新按钮,它将根据您选择的行使用另一组数据填充数据网格。

这是按钮:

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”我该怎么做?提前致谢

4

1 回答 1

0

试试这样

view_breakdown()
{
   $('#dg').datagrid({
      url:'breakdown.php'});
 }  
于 2013-08-21T07:21:21.737 回答