I am following this forum post:
http://www.telerik.com/community/forums/thread/b311D-mgcch.aspx
I can get the MasterTableView successfully client side, but when I do this:
var rows = $find(this._gridid).MasterTableView.SelectedRows;
rows is undefined
The grid I am using is a custom rad grid that inherits from RadGrid
http://www.telerik.com/community/forums/thread/b311D-mgcch.aspx
I can get the MasterTableView successfully client side, but when I do this:
var rows = $find(this._gridid).MasterTableView.SelectedRows;
rows is undefined
The grid I am using is a custom rad grid that inherits from RadGrid
public class CustomRadGrid : RadGrid |
{ |
public CustomRadGrid(){ |
ClientSettings.Selecting.EnableDragToSelectRows = false; |
ClientSettings.Resizing.AllowColumnResize = true; |
MasterTableView.AllowFilteringByColumn = false; |
EnableEmbeddedSkins = false; |
AllowMultiRowSelection = true; |
ClientSettings.Selecting.AllowRowSelect = true; |
} |
} |
The above snippet is just a portion of my class
Does anyone have any idea why SelectedRows would be undefined?
I originally had this posted in the older (non ajax) forum, so you may see a duplicate of this message there.
Thanks!
Nicole