Welcome Guest Search | Active Topics | Sign In | Register

Toobar - Custom toolbaritem Options
mvandenheuvel
Posted: Tuesday, January 5, 2010 5:38:34 AM
Rank: Newbie
Groups: Member

Joined: 12/26/2009
Posts: 5
Is it possible to have an image link like the one below as a custom toolbar item ? This seems not to be the case. If yes, can you show me how I can create such a link inside my toolbar ?

<eo:ToolBarItem Type="Custom">
<CustomItem>
<a href="~/frmExportToExcel.aspx" Target="_blank" runat="server">
<img src="../img/excelsmall.gif" border="none"/>
</a>
</CustomItem>
</eo:ToolBarItem>
eo_support
Posted: Tuesday, January 5, 2010 12:15:34 PM
Rank: Administration
Groups: Administration

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

Please use the following code:

Code: HTML/ASPX
<eo:ToolBarItem Type="Custom">
    <CustomItem>
        <div
            onmousedown="eo_CancelBubble(event)"
            onmouseup="eo_CancelBubble(event)"
            onclick="eo_CancelBubble(event)">
            ....Your HTML link goes here...
        </div>
    </CustomItem>
</eo:ToolBarItem>


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.