I am trying to get the Data Row of the node during the NodeDataBound event. I found the following documentation that I assume gets me this data. However, when I try to implement this and get "The type or namespace name 'DataRowView' could not be found (are you missing a using directive or an assembly reference?)" I have the Telerik.Web.UI namespace imported.
http://www.telerik.com/help/aspnet-ajax/troubleshooting-dataitem-property-is-empty.html
protected
void
radTreeViewTopicsGridFilter_NodeDataBound(
object
sender, RadTreeNodeEventArgs e)
{
DataRowView dataSourceRow = (DataRowView)e.Node.DataItem;
}
http://www.telerik.com/help/aspnet-ajax/troubleshooting-dataitem-property-is-empty.html