2013-07-31 37 views
1

我使用easyui datagrid改變easyui DataGrid的網址上按一下按鈕

我添加了一個新的按鈕,將填充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

嘗試這樣,

view_breakdown() 
{ 
    $('#dg').datagrid({ 
     url:'breakdown.php'}); 
}