I need top level menu items to have an image on the right hand side of the text.
I tried to add it like so:
WebMenu1.Images.TopLevelItemImage.Url = "/images/my_image.gif";
This adds image to the left of menu text. What is a way to move image to the right hand side of the menu item?
Ivan,
In sample browser https://es.infragistics.com/samples/aspnet/data-menu/client-side-events in WebMenu section. If you click on 'Clint Site Events' sample, there is a WebMenu with arrow images on right hand side.
How does this work?
Hello,You are right with this property you can add image in left side of the item. The property Text of node support HTML and you can add image. Please take a look at the code below:<ignav:Item Text='pic: <img src="3.jpg"> '>Hope this helps.