This question is locked. New answers and comments are not allowed.
So I am having a few issues with rendering in IE8 with the menu control. When I view the control with Chrome everything looks great.
The can be seen in my attachment 'menu.png'
The first menu is rendered with IE, the second with Chrome
I published my MVC site using IIS7 and I used 'QOPS' as the virtual directory for the site.
Next bug is odd. Grouping the js files works great on my machine but fails when I put it on the webserver.
I register my Telerik controls with:
Html.Telerik().ScriptRegistrar().DefaultGroup(group => group.Combined(true)).jQuery(false).Render();
It generates the following (QOPS is my virtual directory):
Which gives me a 404 when I attempt to look at the file.
The last problem I have is really confusing me. This could be my error or something wrong with the menu. In this case I turned off the grouping of javascript files.
When I run the site on my local machine (non-virtual directory obviously) I get the normal output for the menu (beside the fact that it is rendering incorrectly in IE8).
Last week when I would render it in IE8, nothing would show up other than the background for the menu bar. It would render fine in Chrome. Attachment 'menu2.png'
I registered my css as such:
Html.Telerik().StyleSheetRegistrar().DefaultGroup(group => group.Add("telerik.common.css").Add("telerik.vista.css"))
I republished the project today by grouping the style sheets and now the menu shows up as an unordered list.