I have a RadGrid inside of RadWindow.
I need to select a Radgrid row in clientside.
How can I do that?
I´m trying to get the radgrid like that:
var masterTable = $find("<%=radgridID.ClientID%>").get_masterTableView();
but always getting null...
Any help?
I got it... Code :
var oManager = GetRadWindowManager();
var oWnd = oManager.GetWindowByName("RadWindow1");
var grid = oWnd.GetContentFrame().contentWindow.$find('RadGrid1') //Get reference to RadGrid
var masterTable = grid.get_masterTableView();
masterTable.selectItem(3); //Select 4th row
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With