I have a strange problem with the menu control. I have a menu into my website and whien I resize the browser, the Menu can disappear. I don't know why ... My menu move when I resize the brower to be entirely visible. I would like that my menu be fix and I think that it could resolve my problem. Is it possible to fix the menu ? I don't want to have a menu on serveral lines if the browser is small.
Thank you in advance,
Thank you in advance,
4 Answers, 1 is accepted
0
Hi Suzi,
We were unable to reproduce the problem you describe. Please provide a live URL where it can be observed or open a support ticket and upload a sample solution that demonstrates it.
Regards,
Alex
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
We were unable to reproduce the problem you describe. Please provide a live URL where it can be observed or open a support ticket and upload a sample solution that demonstrates it.
Regards,
Alex
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Suzi
Top achievements
Rank 1
answered on 21 Nov 2008, 03:16 PM
Ok, I will send you a sample solution. Could you tell me if it is possible to fix the menu ? I don't want the menu take several rows when I resize the browser.
0
Hi Suzi,
Well, most probably... but not without knowing the problem :-)
Kind regards,
Alex
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Well, most probably... but not without knowing the problem :-)
Kind regards,
Alex
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Suzi
Top achievements
Rank 1
answered on 24 Nov 2008, 09:01 AM
I found a solution. I had this problem because the radmenu didn't have a fixed width :
<
s
pan id="HeaderMenuDiv" width='70%'>
<
telerik:RadMenu style="z-index:1" ID="RadMenu1" runat="server" Skin="WebBlue"
EnableOverlay="true"
OnItemCreated="RadMenu1_ItemCreated"
OnItemDataBound="RadMenu1_ItemDataBound" />
</span>
I changed the width :
<span id="HeaderMenuDiv" width='710px'>
<telerik:RadMenu .... />
</span>
It works better now. The menu doesn't diseapper when I resize the browser, and doesn't take several lines when the browser is too small.