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>
		 
	 | 
	
		Rank: Administration Groups: Administration
 
 
Joined: 5/27/2007 Posts: 24,427 
	 | 
		   
	    
		    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!
		  
	 |