Hello,
i have a problem when i initialize a radNavigation server side ;
i have this radNavigation on my aspx page :
<telerik:RadNavigation ID="rnFacturation" runat="server" Skin="Black" DataFieldID="ID" DataTextField="Text" DataNavigateUrlField="Url" DataFieldParentID="ParentID">
</telerik:RadNavigation>
and i fill it server side like this :
siteData.Add(New SiteDataItem(menu.Id, Nothing, menu.Nom, url))
...
siteData.Add(New SiteDataItem(sousMenu.Id, menu.Id, sousMenu.Nom, url))
...
rnFacturation.DataSource = siteData
rnFacturation.DataBind()
Under Chrome, the RadNavigation has every Nodes i have inserted into it. In IE, the Nodes are only under the hamburger button and the style is very strange!
Any idea of the problem ?
thanks in advance for the help.