|
Rank: Member Groups: Member
Joined: 11/3/2007 Posts: 22
|
Hi, Will the Menu control allow text to wrap? I've read through the help but I'm not able to wrap. When I select the MenuMenu1 item and adjust the width in the builder I can adjust the top row. When I set the width at the item level it doesn't change the width. What am I missing here?
thanks....
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
I believe you need to set MenuItem.Text.NoWrap to false.
Thanks
|
|
Rank: Member Groups: Member
Joined: 11/3/2007 Posts: 22
|
I set nowrap to false in several places. All the items are _default and I set nowrap false in that too. Still doesn't wrap. You can check it out here: http://www.cybercitycenter.com/I would like all the submenus to wrap especially Music->woody carr connection->hear woody carr connection.
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi Nick, Please see the sample code below:
Code: HTML/ASPX
<eo:SlideMenu id="SlideMenu1" runat="server" Width="160px">
<TopGroup>
<Items>
<eo:MenuItem Text-Html="Top Item">
<SubMenu>
<Items>
<eo:MenuItem Text-Html="This item won't wrap">
<SubMenu Width="50">
<Items>
<eo:MenuItem Text-NoWrap="False" Text-Html="This item will wrap"></eo:MenuItem>
</Items>
</SubMenu>
</eo:MenuItem>
</Items>
</SubMenu>
</eo:MenuItem>
</Items>
</TopGroup>
</eo:SlideMenu>
Thanks
|
|