Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
upgrading to 11.1 : Webmenu styling disappear
posted

Hi

 

I Have installed v11.1 and then used the upgrade utility to upgrade my project.

It was successfull, but the webmenu has lost the styling..

after some inverstigation i found out that the below Links are not in the generated HTML of the new version:


<link href="ig_res/default/ig_panel.css" type="text/css" rel="stylesheet" />
<link href="ig_res/default/ig_grid_opt.css" type="text/css" rel="stylesheet" />
<link href="ig_res/default/ig_menu.css" type="text/css" rel="stylesheet" />
<link href="ig_res/default/ig_calendar.css" type="text/css" rel="stylesheet" />
<link href="ig_res/default/ig_datechooser.css" type="text/css" rel="stylesheet" />
<link href="ig_res/default/ig_grid.css" type="text/css" rel="stylesheet" />
<link href="ig_res/default/ig_tab.css" type="text/css" rel="stylesheet" /><style type="text/css">

 

previous version  v10.1 ( still running on our UAT server )  has the above files as links in the HTML code.

and new version v11.1 on My local machine doesnt


 

Parents
No Data
Reply
  • 8736
    posted

    Hello,

    I was able to see the below rendered HTML with ultraWebMenu:

    Generated HTML from Page Source:

    <link href="ig_res/Default/ig_shared.css" type="text/css" rel="stylesheet" />
    <link href="ig_res/Default/ig_menu.css" type="text/css" rel="stylesheet" />

    HTML mark up on Page:
    <ignav:UltraWebMenu ID="UltraWebMenu1" runat="server" TargetFrame=""  TargetUrl="">
    <SeparatorStyle BackgroundImage="ig_menuSep.gif" CssClass="SeparatorClass"  CustomRules="background-repeat:repeat-x;" />
    <DisabledStyle Font-Names="MS Sans Serif" Font-Size="8pt" ForeColor="Gray"></DisabledStyle>
    <ExpandEffects ShadowColor="LightGray"></ExpandEffects>
    <Items>
    <ignav:Item Text="Top Item o"><Items>
    <ignav:Item Text="Sub Menu Item"></ignav:Item>
    </Items>
    </ignav:Item><ignav:Item Text="Top Item 1">
    <Items>
    <ignav:Item Text="Sub Menu Item 1.1"></ignav:Item>
    <ignav:Item Text="Sub Menu Item 1.2"></ignav:Item>
    </Items>
    </ignav:Item>
    <ignav:Item Text="Top Item 2"></ignav:Item>
    </Items>
    <Levels>
    <ignav:Level Index="0" />
    </Levels>
    <Images>
    <SubMenuImage Url="ig_menuTri.gif" />
    </Images>
    </ignav:UltraWebMenu>

    I have used the NetAdvantage version=11.1.20111.2064. You may also manually add styles in ig_res folder from “C:\Users\Public\Documents\Infragistics\NetAdvantage 2011.1\ASP.NET\StyleLibraries”.

    I hope this helps.

Children