This is a migrated thread and some comments may be shown as answers.

[Solved] Rebind a Radgrid inside a RadPanelBar?

1 Answer 99 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Luis
Top achievements
Rank 1
Luis asked on 16 Dec 2009, 02:29 PM
Hello

i have a Radgrid inside a Radpanelbar
i want to know how to rebind the radgrid in the client Code?



thanks

1 Answer, 1 is accepted

Sort by
0
Schlurk
Top achievements
Rank 2
answered on 16 Dec 2009, 05:31 PM
You can use something like this javascript:

function myFunction(sender, args) 
    var myGrid = $find('<%=RadPanelbar1.Items[0].Items[0].FindControl("RadGrid1").ClientID%>'); 
    var masterTable = myGrid.get_masterTableView(); 
    masterTable.rebind(); 

Tags
Grid
Asked by
Luis
Top achievements
Rank 1
Answers by
Schlurk
Top achievements
Rank 2
Share this question
or