7 Answers, 1 is accepted
0
Hi Arnold,
I cannot reproduce this issue at our side, I guess that there are some other styles on the page which cause the menu not to calculate its position correctly. Can you send us a live url where we could observe the problem? Thanks
Best regards,
Yana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
I cannot reproduce this issue at our side, I guess that there are some other styles on the page which cause the menu not to calculate its position correctly. Can you send us a live url where we could observe the problem? Thanks
Best regards,
Yana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

Web team
Top achievements
Rank 1
answered on 07 Jun 2010, 03:08 AM
sorry i dont have means to share the live site to you but there is no other css attached on it. here is the aspx code:
<div class="mainmenu"> |
<telerik:RadMenu ID="rmMain" style="z-index:2500; direction:rtl" runat="server" EnableRoundedCorners="true" EnableShadows="true" Width="100%" Skin="Web20"> |
<Items> |
<telerik:RadMenuItem Text="About Pricebook" AccessKey="p" NavigateUrl="AboutPricebook.aspx"> |
<%-- <Items> |
<telerik:RadMenuItem Text="Training Videos" /> |
<telerik:RadMenuItem Text="Online Resources" /> |
<telerik:RadMenuItem Text="Contact the Administrator" /> |
</Items>--%> |
</telerik:RadMenuItem> |
<telerik:RadMenuItem Text="Administration"> |
<Items> |
<telerik:RadMenuItem Text="Customer Management" NavigateUrl="Admin/CustomerManagement.aspx" /> |
<telerik:RadMenuItem Text="User Management" NavigateUrl="Admin/UserManagement.aspx" /> |
<telerik:RadMenuItem Text="Pricelist Management" NavigateUrl="Admin/PricelistManagement.aspx" /> |
<telerik:RadMenuItem Text="Section Management" NavigateUrl="Admin/SectionManagement.aspx" /> |
</Items> |
</telerik:RadMenuItem> |
<telerik:RadMenuItem Text="Pricelist Change Management"> |
<Items> |
<telerik:RadMenuItem Text="Create a New PLCM Request" NavigateUrl="Admin/PricelistChangeForm.aspx" /> |
<telerik:RadMenuItem Text="View Existing Request" NavigateUrl="Dashboard/PricelistChangeFormList.aspx" /> |
</Items> |
</telerik:RadMenuItem> |
<telerik:RadMenuItem Text="Quote" AccessKey="Q" > |
<Items> |
<telerik:RadMenuItem Text="View Quotes" NavigateUrl="DashBoard/QuoteListing.aspx" /> |
<telerik:RadMenuItem Text="Create a Quote" NavigateUrl="Quotes/QuoteGenerator.aspx" /> |
</Items> |
</telerik:RadMenuItem> |
</Items> |
</telerik:RadMenu> |
</div> |
0
Hi Arnold Castro,
I'm still not able to observe the issue at our side. Could you please send us the complete aspx page? Thanks
All the best,
Yana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
I'm still not able to observe the issue at our side. Could you please send us the complete aspx page? Thanks
All the best,
Yana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

Web team
Top achievements
Rank 1
answered on 10 Jun 2010, 11:05 AM
Also, note that I only experience this issue when the application is deployed into the server (IIS7) and using IE8 browser. When I run the application in visual studio the issue is not happening. here is the complete source:
<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Main.master.cs" Inherits="Pricebook.Web.MasterPage"%> |
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head runat="server"> |
<title></title> |
<asp:ContentPlaceHolder id="head" runat="server"> |
</asp:ContentPlaceHolder> |
<link rel="stylesheet" type="text/css" href="./Css/styles.css" /> |
<script>function RedirectWindow(url) { window.location.href = url; } </script> |
</head> |
<body> |
<form id="form1" runat="server"> |
<telerik:RadScriptManager ID="ScriptManager" runat="server" /> |
<telerik:RadSkinManager ID="RadSkinManager1" runat="server" Skin="Windows7" /> |
<telerik:RadFormDecorator ID="FormDecorator1" runat="server" DecoratedControls="all"></telerik:RadFormDecorator> |
<telerik:RadToolTip runat="server" ID="rttRole" ShowEvent="onmouseover" RelativeTo="Element" Animation="Resize" TargetControlID="aLogin" IsClientID="true" Position="TopLeft" /> |
<div> |
<table id="header"> |
<tr> |
<td><img src="../Images/logo.gif" /></td> |
<td id="login"><a href="#" id="aLogin">Hi <asp:Literal ID="lblLoginName" runat="server" Text=""></asp:Literal>!</a></td> |
</tr> |
</table> |
<div class="mainmenu"> |
<telerik:RadMenu ID="rmMain" style="z-index:2500; direction:rtl" runat="server" EnableRoundedCorners="true" EnableShadows="true" Width="100%" Skin="Web20"> |
<Items> |
<telerik:RadMenuItem Text="About Pricebook" AccessKey="p" NavigateUrl="AboutPricebook.aspx"> |
<%-- <Items> |
<telerik:RadMenuItem Text="Training Videos" /> |
<telerik:RadMenuItem Text="Online Resources" /> |
<telerik:RadMenuItem Text="Contact the Administrator" /> |
</Items>--%> |
</telerik:RadMenuItem> |
<telerik:RadMenuItem Text="Administration"> |
<Items> |
<telerik:RadMenuItem Text="Customer Management" NavigateUrl="Admin/CustomerManagement.aspx" /> |
<telerik:RadMenuItem Text="User Management" NavigateUrl="Admin/UserManagement.aspx" /> |
<telerik:RadMenuItem Text="Pricelist Management" NavigateUrl="Admin/PricelistManagement.aspx" /> |
<telerik:RadMenuItem Text="Section Management" NavigateUrl="Admin/SectionManagement.aspx" /> |
</Items> |
</telerik:RadMenuItem> |
<telerik:RadMenuItem Text="Pricelist Change Management"> |
<Items> |
<telerik:RadMenuItem Text="Create a New PLCM Request" NavigateUrl="Admin/PricelistChangeForm.aspx" /> |
<telerik:RadMenuItem Text="View Existing Request" NavigateUrl="Dashboard/PricelistChangeFormList.aspx" /> |
</Items> |
</telerik:RadMenuItem> |
<telerik:RadMenuItem Text="Quote" AccessKey="Q" > |
<Items> |
<telerik:RadMenuItem Text="View Quotes" NavigateUrl="DashBoard/QuoteListing.aspx" /> |
<telerik:RadMenuItem Text="Create a Quote" NavigateUrl="Quotes/QuoteGenerator.aspx" /> |
</Items> |
</telerik:RadMenuItem> |
</Items> |
</telerik:RadMenu> |
</div> |
<div id="centre"> |
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server"></asp:ContentPlaceHolder> |
</div> |
<div>This site is best viewed using current version of Microsoft Internet Explorer at a screen resolution of 1024 x 768 or higher</div> |
</div> |
</form> |
</body> |
</html> |
0
Hello Arnold,
Could you please send us the styles from styles.css file? The menu still works as expected at our side.
Kind regards,
Yana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Could you please send us the styles from styles.css file? The menu still works as expected at our side.
Kind regards,
Yana
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

Web team
Top achievements
Rank 1
answered on 25 Jun 2010, 08:42 AM
Hi Yana,
Were you able to use deploy it in a server? the problem does not occur if you just run the page on Visual Studio. Try deploying it in the server.
Here is the source file of the actual page:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head><title> |
</title> |
<link rel="stylesheet" type="text/css" href="./Css/styles.css" /> |
<script>function RedirectWindow(url) { window.location.href = url; } </script> |
<link href="/WebResource.axd?d=DBzpKpAmQs84LUJBXu_C8f8RpLwuaOW5Qb_XTQCp1zF0naZyFd-KuwM3LFyExoaiUuqAiZ-RshtK-0WESSDvrA2&t=634036153340000000" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/WebResource.axd?d=DBzpKpAmQs84LUJBXu_C8f8RpLwuaOW5Qb_XTQCp1zGo3GK8Ha9Fk1_tw3c17e_gJzfmHt88-ZygqjBcxfNX1gJJEwj60h72OxwLIldfsDc1&t=634036153340000000" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/WebResource.axd?d=DBzpKpAmQs84LUJBXu_C8f8RpLwuaOW5Qb_XTQCp1zFHTJhWqO53NbIesgt3n3ckqW76OxabosuepGrSIkjN2Q2&t=634036153340000000" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/WebResource.axd?d=DBzpKpAmQs84LUJBXu_C8f8RpLwuaOW5Qb_XTQCp1zE07MC-dGnK6eWU-xO01yo1rIt9RR4hM8YjmrWYpEWgkr1-6uJa2FOUjeg8_7hSCmM1&t=634036153340000000" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/WebResource.axd?d=DBzpKpAmQs84LUJBXu_C8f8RpLwuaOW5Qb_XTQCp1zFXbpChS57i9Wjwgy6-2Vow0&t=634036153340000000" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/WebResource.axd?d=DBzpKpAmQs84LUJBXu_C8f8RpLwuaOW5Qb_XTQCp1zHCkgNk05TxSMaoSHCkVEUXFYPU1pPX7u65DkrMzAfoDA2&t=634036153340000000" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /></head> |
<body> |
<form name="aspnetForm" method="post" action="AboutPricebook.aspx" id="aspnetForm"> |
<div> |
<input type="hidden" name="ctl00_ScriptManager_TSM" id="ctl00_ScriptManager_TSM" value="" /> |
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> |
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> |
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTY1NDU2MTA1Mg9kFgJmD2QWAgIDD2QWCgIDD2QWAmYPFCsAAg8WBh4LXyFEYXRhQm91bmRnHhNjYWNoZWRTZWxlY3RlZFZhbHVlZB4HVmlzaWJsZWhkDxQrAA4UKwACDxYGHgRUZXh0BQVCbGFjax4FVmFsdWUFBUJsYWNrHghTZWxlY3RlZGhkZBQrAAIPFgYfAwUHRGVmYXVsdB8EBQdEZWZhdWx0HwVoZGQUKwACDxYGHwMFBkZvcmVzdB8EBQZGb3Jlc3QfBWhkZBQrAAIPFgYfAwUDSGF5HwQFA0hheR8FaGRkFCsAAg8WBh8DBQpPZmZpY2UyMDA3HwQFCk9mZmljZTIwMDcfBWhkZBQrAAIPFgYfAwUHT3V0bG9vax8EBQdPdXRsb29rHwVoZGQUKwACDxYGHwMFBlNpbXBsZR8EBQZTaW1wbGUfBWhkZBQrAAIPFgYfAwUKU2l0ZWZpbml0eR8EBQpTaXRlZmluaXR5HwVoZGQUKwACDxYGHwMFBlN1bnNldB8EBQZTdW5zZXQfBWhkZBQrAAIPFgYfAwUHVGVsZXJpax8EBQdUZWxlcmlrHwVoZGQUKwACDxYGHwMFBVZpc3RhHwQFBVZpc3RhHwVoZGQUKwACDxYGHwMFBVdlYjIwHwQFBVdlYjIwHwVoZGQUKwACDxYGHwMFB1dlYkJsdWUfBAUHV2ViQmx1ZR8FaGRkFCsAAg8WBh8DBQhXaW5kb3dzNx8EBQhXaW5kb3dzNx8FZ2RkDxQrAQ5mZmZmZmZmZmZmZmZmZhYBBXdUZWxlcmlrLldlYi5VSS5SYWRDb21ib0JveEl0ZW0sIFRlbGVyaWsuV2ViLlVJLCBWZXJzaW9uPTIwMTAuMS4zMDkuMzUsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49MTIxZmFlNzgxNjViYTNkNBYgZg8PFgQeCENzc0NsYXNzBQlyY2JIZWFkZXIeBF8hU0ICAmRkAgEPDxYEHwYFCXJjYkZvb3Rlch8HAgJkZAICDw8WBh8DBQVCbGFjax8EBQVCbGFjax8FaGRkAgMPDxYGHwMFB0RlZmF1bHQfBAUHRGVmYXVsdB8FaGRkAgQPDxYGHwMFBkZvcmVzdB8EBQZGb3Jlc3QfBWhkZAIFDw8WBh8DBQNIYXkfBAUDSGF5HwVoZGQCBg8PFgYfAwUKT2ZmaWNlMjAwNx8EBQpPZmZpY2UyMDA3HwVoZGQCBw8PFgYfAwUHT3V0bG9vax8EBQdPdXRsb29rHwVoZGQCCA8PFgYfAwUGU2ltcGxlHwQFBlNpbXBsZR8FaGRkAgkPDxYGHwMFClNpdGVmaW5pdHkfBAUKU2l0ZWZpbml0eR8FaGRkAgoPDxYGHwMFBlN1bnNldB8EBQZTdW5zZXQfBWhkZAILDw8WBh8DBQdUZWxlcmlrHwQFB1RlbGVyaWsfBWhkZAIMDw8WBh8DBQVWaXN0YR8EBQVWaXN0YR8FaGRkAg0PDxYGHwMFBVdlYjIwHwQFBVdlYjIwHwVoZGQCDg8PFgYfAwUHV2ViQmx1ZR8EBQdXZWJCbHVlHwVoZGQCDw8PFgYfAwUIV2luZG93czcfBAUIV2luZG93czcfBWdkZAIFDw8WAh4XRW5hYmxlQWpheFNraW5SZW5kZXJpbmdoFgIeBXN0eWxlBQ1kaXNwbGF5Om5vbmU7ZAIHDw8WBB8DBT5Zb3UgYXJlIGxvZ2dlZCBpbiBhczogU2FsZXMgQWRtaW5pc3RyYXRvciwgUHJpY2UgQWRtaW5pc3RyYXRvch8IaGRkAgkPFgIfAwUNQXJub2xkIENhc3Ryb2QCCw8UKwACFCsAAg8WAh8IaGQQFgRmAgECAgIDFgQUKwACDxYCHglBY2Nlc3NLZXkFAXBkZBQrAAJkEBYEZgIBAgICAxYEFCsAAmRkFCsAAmRkFCsAAmRkFCsAAmRkDxYEZmZmZhYBBXNUZWxlcmlrLldlYi5VSS5SYWRNZW51SXRlbSwgVGVsZXJpay5XZWIuVUksIFZlcnNpb249MjAxMC4xLjMwOS4zNSwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj0xMjFmYWU3ODE2NWJhM2Q0FCsAAmQQFgJmAgEWAhQrAAJkZBQrAAJkZA8WAmZmFgEFc1RlbGVyaWsuV2ViLlVJLlJhZE1lbnVJdGVtLCBUZWxlcmlrLldlYi5VSSwgVmVyc2lvbj0yMDEwLjEuMzA5LjM1LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPTEyMWZhZTc4MTY1YmEzZDQUKwACDxYCHwoFAVFkEBYCZgIBFgIUKwACZGQUKwACZGQPFgJmZhYBBXNUZWxlcmlrLldlYi5VSS5SYWRNZW51SXRlbSwgVGVsZXJpay5XZWIuVUksIFZlcnNpb249MjAxMC4xLjMwOS4zNSwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj0xMjFmYWU3ODE2NWJhM2Q0DxYEZmZmZhYBBXNUZWxlcmlrLldlYi5VSS5SYWRNZW51SXRlbSwgVGVsZXJpay5XZWIuVUksIFZlcnNpb249MjAxMC4xLjMwOS4zNSwgQ3VsdHVyZT1uZXV0cmFsLCBQdWJsaWNLZXlUb2tlbj0xMjFmYWU3ODE2NWJhM2Q0ZBYEZg8PFgIfCgUBcGRkAgMPDxYCHwoFAVFkZBgCBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAwUUY3RsMDAkRm9ybURlY29yYXRvcjEFDWN0bDAwJHJ0dFJvbGUFDGN0bDAwJHJtTWFpbgURY3RsMDAkU2tpbkNob29zZXIPFCsAAmUFCFdpbmRvd3M3ZOxOMfuKwNAvhwSzzcfok52LlxwP" /> |
</div> |
<script type="text/javascript"> |
//<![CDATA[ |
var theForm = document.forms['aspnetForm']; |
if (!theForm) { |
theForm = document.aspnetForm; |
} |
function __doPostBack(eventTarget, eventArgument) { |
if (!theForm.onsubmit || (theForm.onsubmit() != false)) { |
theForm.__EVENTTARGET.value = eventTarget; |
theForm.__EVENTARGUMENT.value = eventArgument; |
theForm.submit(); |
} |
} |
//]]> |
</script> |
<script src="/WebResource.axd?d=dOJNs8g29rTq0Md98QAJTw2&t=633834052103732959" type="text/javascript"></script> |
<script src="/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl00_ScriptManager_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d3.5.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen-US%3a0d787d5c-3903-4814-ad72-296cea810318%3aea597d4b%3ab25378d2%3bTelerik.Web.UI%2c+Version%3d2010.1.309.35%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen-US%3a30afb63f-e6ac-41db-9851-11879733de0a%3a16e4e7cd%3a86526ba7%3a874f8ea2%3af7645509%3a24ee1bba%3a19620875%3a39040b5c%3ae330518b%3a1e771326%3ac8618e41" type="text/javascript"></script> |
<script type="text/javascript"> |
//<![CDATA[ |
if (typeof(Sys) === 'undefined') throw new Error('ASP.NET Ajax client-side framework failed to load.'); |
//]]> |
</script> |
<script type="text/javascript"> |
//<![CDATA[ |
Sys.WebForms.PageRequestManager._initialize('ctl00$ScriptManager', document.getElementById('aspnetForm')); |
Sys.WebForms.PageRequestManager.getInstance()._updateControls([], [], [], 90); |
//]]> |
</script> |
<div id="ctl00_FormDecorator1" style="display:none;"> |
<!-- 2010.1.309.35 --><script type="text/javascript"> |
//<![CDATA[ |
if (typeof(WebForm_AutoFocus) != 'undefined') |
{ |
var old_WebForm_AutoFocus = WebForm_AutoFocus; |
WebForm_AutoFocus = function(arg) |
{ |
Sys.Application.add_load(function() |
{ |
old_WebForm_AutoFocus(arg); |
WebForm_AutoFocus = old_WebForm_AutoFocus; |
}); |
} |
} |
if (typeof(Telerik) != 'undefined') |
{ |
if (Telerik.Web.UI.RadFormDecorator) |
{ |
Telerik.Web.UI.RadFormDecorator.initializePage('ctl00_FormDecorator1', '', 'Windows7', 4095); |
} |
} |
//]]></script><input id="ctl00_FormDecorator1_ClientState" name="ctl00_FormDecorator1_ClientState" type="hidden" /> |
</div> |
<div id="ctl00_rttRole" style="display:none;position:absolute;"> |
<input id="ctl00_rttRole_ClientState" name="ctl00_rttRole_ClientState" type="hidden" /> |
</div> |
<div id="conteneur"> |
<table id="header"> |
<tr> |
<td><img src="../Images/logo.gif" /></td> |
<td id="login"><a href="#" id="aLogin">Hi Arnold Castro!</a></td> |
</tr> |
</table> |
<div class="mainmenu"> |
<div id="ctl00_rmMain" class="RadMenu RadMenu_Web20 rmSized" style="width:100%;z-index:2500; direction:rtl"> |
<ul class="rmHorizontal rmRootGroup rmRoundedCorners rmShadows"> |
<li class="rmItem rmFirst"><a href="AboutPricebook.aspx" accesskey="p" class="rmLink"><span class="rmText">About Pricebook</span></a></li><li class="rmItem "><a href="#" class="rmLink"><span class="rmText">Administration</span></a><div class="rmSlide"> |
<ul class="rmVertical rmGroup rmLevel1"> |
<li class="rmItem rmFirst"><a href="Admin/CustomerManagement.aspx" class="rmLink"><span class="rmText">Customer Management</span></a></li><li class="rmItem "><a href="Admin/UserManagement.aspx" class="rmLink"><span class="rmText">User Management</span></a></li><li class="rmItem "><a href="Admin/PricelistManagement.aspx" class="rmLink"><span class="rmText">Pricelist Management</span></a></li><li class="rmItem rmLast"><a href="Admin/SectionManagement.aspx" class="rmLink"><span class="rmText">Section Management</span></a></li> |
</ul> |
</div></li><li class="rmItem "><a href="#" class="rmLink"><span class="rmText">Pricelist Change Management</span></a><div class="rmSlide"> |
<ul class="rmVertical rmGroup rmLevel1"> |
<li class="rmItem rmFirst"><a href="Admin/PricelistChangeForm.aspx" class="rmLink"><span class="rmText">Create a New PLCM Request</span></a></li><li class="rmItem rmLast"><a href="Dashboard/PricelistChangeFormList.aspx" class="rmLink"><span class="rmText">View Existing Request</span></a></li> |
</ul> |
</div></li><li class="rmItem rmLast"><a href="#" accesskey="Q" class="rmLink"><span class="rmText">Quote</span></a><div class="rmSlide"> |
<ul class="rmVertical rmGroup rmLevel1"> |
<li class="rmItem rmFirst"><a href="DashBoard/QuoteListing.aspx" class="rmLink"><span class="rmText">View Quotes</span></a></li><li class="rmItem rmLast"><a href="Quotes/QuoteGenerator.aspx" class="rmLink"><span class="rmText">Create a Quote</span></a></li> |
</ul> |
</div></li> |
</ul><input id="ctl00_rmMain_ClientState" name="ctl00_rmMain_ClientState" type="hidden" /> |
</div> |
</div> |
<div id="centre"> |
<h1>(Build 0006)</h1> |
<p>This published site contains the following the features:</p> |
<ul> |
<li>Windows Authentication</li> |
<li>Set up Secured pages</li> |
</ul> |
</div> |
<div id="pied">This site is best viewed using current version of Microsoft Internet Explorer at a screen resolution of 1024 x 768 or higher</div> |
</div> |
<script type="text/javascript"> |
//<![CDATA[ |
Sys.Application.initialize(); |
Sys.Application.add_init(function() { |
$create(Telerik.Web.UI.RadFormDecorator, {"clientStateFieldID":"ctl00_FormDecorator1_ClientState","decoratedControls":4095,"enabled":true,"skin":"Windows7"}, null, null, $get("ctl00_FormDecorator1")); |
}); |
Sys.Application.add_init(function() { |
$create(Telerik.Web.UI.RadToolTip, {"_cssClass":"","_manualCloseButtonText":"Close","animation":1,"clientStateFieldID":"ctl00_rttRole_ClientState","formID":"aspnetForm","position":11,"relativeTo":1,"skin":"Windows7","targetControlID":"aLogin","text":"You are logged in as: Sales Administrator, Price Administrator"}, null, null, $get("ctl00_rttRole")); |
}); |
Sys.Application.add_init(function() { |
$create(Telerik.Web.UI.RadMenu, {"_childListElementCssClass":null,"_skin":"Web20","attributes":{},"clientStateFieldID":"ctl00_rmMain_ClientState","collapseAnimation":"{\"duration\":450}","enableRoundedCorners":true,"enableShadows":true,"expandAnimation":"{\"duration\":450}","itemData":[{"navigateUrl":"AboutPricebook.aspx"},{"items":[{"navigateUrl":"Admin/CustomerManagement.aspx"},{"navigateUrl":"Admin/UserManagement.aspx"},{"navigateUrl":"Admin/PricelistManagement.aspx"},{"navigateUrl":"Admin/SectionManagement.aspx"}]},{"items":[{"navigateUrl":"Admin/PricelistChangeForm.aspx"},{"navigateUrl":"Dashboard/PricelistChangeFormList.aspx"}]},{"items":[{"navigateUrl":"DashBoard/QuoteListing.aspx"},{"navigateUrl":"Quotes/QuoteGenerator.aspx"}]}]}, null, null, $get("ctl00_rmMain")); |
}); |
//]]> |
</script> |
</form> |
</body> |
</html> |
Here is the css:
/* Masterpages and Defults */ |
#centre { |
border:1px solid #93b4df; |
border-top:0; |
color:#6788be; |
padding:2.5em 2em 2em 2em; |
min-height:400px; |
height:auto !important; |
height:400px; |
} |
#conteneur { |
background-color:#fafafa; |
margin: 1em 2%; |
min-width:930px; |
position:absolute; |
width:95%; |
margin-top:0px; |
} |
#login |
{ |
text-align:rightright; |
vertical-align:bottombottom; |
} |
#login a |
{ |
color:#fefeff; |
font-size:0.8em; |
font-weight:bold; |
} |
#header |
{ |
background-color:#4e7dd1; |
width:100%; |
padding:0px 5px 0px 5px; |
} |
#pied { |
padding:0.5em; |
text-align:center; |
background-color: #4e7dd1; |
color:#fefeff; |
} |
.menuhaut { |
font-size:1em; |
list-style-type:none; |
margin:0; |
padding:0; |
} |
a |
{ |
color:#6F8EC2; |
text-decoration:underline; |
} |
body { |
background-color: #4e7dd1; |
font-family:Arial, Helvetica, sans-serif; |
font-size:0.75em; |
color:#3950a1; |
} |
h1, h2, h3, h4, h5 |
{ |
font-weight:bold; |
color:#666666; |
} |
h1 { |
font-size:1.2em; |
margin: 0.5em 0.5em 1em 0; |
} |
h2 { |
text-align:rightright; |
font-size:1.1em; |
margin:0.8em 0.5em 0.3em 0.6em; |
} |
h3 { |
font-size:0.9em; |
margin:0.8em 0.5em 0.3em 0.8em; |
} |
h4 { |
font-size:0.8em; |
margin:0.7em 0.5em 0.3em 1em; |
} |
h5 { |
font-size:0.7em; |
margin:0.6em 0.5em 0.2em 1.5em; |
} |
p { |
margin:1px 0.5em 0.5em 1.5em; |
} |
.mainmenu |
{ |
width:100%; |
padding:0; |
margin:0; |
} |
.RadMenu ul.rmRootGroup { |
float:none !important; |
} |
.error |
{ |
color:Red; |
} |
#bodyPop { |
background-color: #fafafa; |
font-family:Arial, Helvetica, sans-serif; |
font-size:0.75em; |
color:#3950a1; |
overflow:hidden |
} |
/* Masterpages and Defults */ |
/* User Management */ |
.tblUserPop |
{ |
width:280px; |
padding: 0 8px 8px 0; |
} |
.tblUserPop .td1 |
{ |
width:30%; |
} |
.tblUserPop .td2 |
{ |
text-align:rightright; |
width:70%; |
} |
.multipage |
{ |
padding:10px; |
border-left:solid 1px #bccbdd; |
border-right:solid 1px #bccbdd; |
border-bottom:solid 1px #bccbdd; |
} |
/* User Management */ |
/* Product Selection */ |
.pricebookRadPanelItem |
{ |
} |
.pricelistRadPanelItem |
{ |
background-color:Silver; |
} |
.productSectionGrid |
{ |
padding-top:10px; |
padding-bottom:10px; |
} |
.productSection |
{ |
padding-top:10px; |
padding-right:10px; |
padding-bottom:10px; |
} |
.productMultiPageView |
{ |
padding:15px; |
background:#DFE9F5 0 0; |
} |
.horizontalRules |
{ |
position:absolute; |
text-align:left; |
width:1024px; |
margin-top: -5px; |
background-color: #DFE9F5; |
height: 5px; |
border-style:none; |
} |
#SummaryTable |
{ |
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif; |
font-size: 11px; |
background: #fff; |
margin: 15px; |
width: 990px; |
border-collapse: collapse; |
text-align: left; |
} |
#SummaryTable th |
{ |
font-size: 12px; |
font-weight: normal; |
color: #039; |
padding: 3px 1px; |
border-bottom: 2px solid #6678b1; |
} |
#SummaryTable td |
{ |
color: #669; |
padding: 7px 5px 0px 5px; |
} |
#SummaryTable tr:hover td |
{ |
color: #009; |
} |
/* Product Selection */ |
/* Quote Generator */ |
.containerStyles |
{ |
vertical-align:middle; |
padding: 5px 10px 5px 10px; |
} |
.fieldSetTextboxStyle |
{ |
vertical-align:middle; |
margin: 5px 160px 5px 5px; |
} |
.fieldSetTextboxStylePDF |
{ |
vertical-align:middle; |
margin: 5px 160px 5px 0px; |
} |
/* Quote Generator */ |
/* PLCM */ |
.divLine |
{ |
border-top:dotted 1px #666666; |
width:100%; |
padding-bottom:10px; |
} |
.imgAlign |
{ |
vertical-align:bottombottom; |
padding-bottom:3px; |
} |
.tblPLCM |
{ |
width:100%; |
padding:10px; |
} |
.divAction |
{ |
text-align:rightright; |
padding-top:25px; |
} |
.divText |
{ |
width:100%; |
height:auto; |
border:solid 1px #b8cbde; |
background-color:#ffffff; |
padding:2px; |
color:#000000 |
} |
/* PLCM */ |
/* Quote Listing */ |
.quoteListingSection |
{ |
padding-top:10px; |
padding-right:10px; |
padding-bottom:10px; |
} |
.quoteActionButtons |
{ |
vertical-align:bottombottom; |
} |
/* Quote Listing */ |
0
Accepted
Hello Arnold,
Could you please set the rtl direction like this:
If this doesn't help, check for absolutely positioned divs, they may cause the menu not to calculate its position correctly. Please let us know how it goes.
Best regards,
Yana
the Telerik team
Could you please set the rtl direction like this:
<
telerik:RadMenu
ID
=
"rmMain"
style
=
"z-index:2500;"
dir
=
"rtl"
runat
=
"server"
EnableRoundedCorners
=
"true"
EnableShadows
=
"true"
Width
=
"100%"
Skin
=
"Web20"
>
If this doesn't help, check for absolutely positioned divs, they may cause the menu not to calculate its position correctly. Please let us know how it goes.
Best regards,
Yana
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items