Posted
on Apr 7, 2011
(permalink)
Hello,
I've updated my Firefox browser to the latest version Firefox 4. After doing this the nodes within my RadTreeView control no longer respond to clicks and open up to display items within them. The TreeView works fine in IE 7 & 8 and Firefox versions older than 4. The OnNodeExand="treeSitemap_NodeExand" never fires when clicked in Firefox 4. Any ideas why this event isn't firing in Firefox 4?
I'm using version v2.0.50727 of the RadTreeView control with c# .net 2.0.
Here is what the html of the tag looks like.
<radT:RadTreeView ID="treeSiteMap" runat="server" Width="600px" OnNodeExpand="treeSiteMap_NodeExpand" AutoPostBack="true" DragAndDropBetweenNodes="true" DragAndDrop="true" OnNodeDrop="treeSiteMap_NodeDrop" BeforeClientDrop="treeSiteMap_BeforeDrop" BeforeClientClick="treeSiteMap_BeforeClick" SkinsPath="ControlSkins/Tree"></radT:RadTreeView>
and here is the code of the event that never gets fired
protected void treeSiteMap_NodeExpand(object sender, Telerik.WebControls.RadTreeNodeEventArgs e)
{
LoadSiteTree(e.NodeClicked);
}
Any help would be greatly appreciated.
Thanks
Todd