Welcome Guest Search | Active Topics | Sign In | Register

SlideMenu Design Issue in Chrome Options
Philipp Jenni
Posted: Wednesday, October 14, 2015 3:07:32 PM
Rank: Advanced Member
Groups: Member

Joined: 6/9/2007
Posts: 98
Hi,

I have a design issue in Chrome. The SlideMenu generate Empty Images they are Visible but without a img src.
This generates a square on the right side of each Top Level Item in SlideMenu.



This example is generated with this code:

Code: HTML/ASPX
<eo:SlideMenu ID="slideMain" runat="server" Width="200px" ControlSkinID="None" SlidePaneHeight="170"
                OnItemClick="slideMain_ItemClick" RaisesServerEvent="True" SingleExpand="False">
       </eo:SlideMenu>


The data comes from a datasource.

Could you fix this?
eo_support
Posted: Wednesday, October 14, 2015 8:20:50 PM
Rank: Administration
Groups: Administration

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

The empty image is caused by missing RightIconUrl value. You can use the built-in "Blank" image as RightIconUrl this way:

Code: HTML/ASPX
<eo:SlideMenu ID="slideMain" runat="server" Width="200px" ControlSkinID="None" SlidePaneHeight="170"
    OnItemClick="slideMain_ItemClick" RaisesServerEvent="True" SingleExpand="False">
    <LookItems>
        <eo:MenuItem ItemID="_TopLevelItem" RightIcon-Url="Blank">
        </eo:MenuItem>
    </LookItems>
</eo:SlideMenu>


This will apply "Blank" to all top level item's RightIcon.Url property.

Thanks!
Philipp Jenni
Posted: Thursday, October 15, 2015 2:50:02 AM
Rank: Advanced Member
Groups: Member

Joined: 6/9/2007
Posts: 98
This Workaround works. 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.