Welcome Guest Search | Active Topics | Sign In | Register

center wrap text on Menu Options
Nick
Posted: Tuesday, January 22, 2008 2:24:01 PM
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....
eo_support
Posted: Tuesday, January 22, 2008 3:11:35 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,090
Hi,

I believe you need to set MenuItem.Text.NoWrap to false.

Thanks
Nick
Posted: Thursday, January 24, 2008 7:59:08 PM
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.

eo_support
Posted: Friday, January 25, 2008 1:31:49 PM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,090
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


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.