Hello Telerik Team.
Steve needed to put an image before and after the RadMenu. I need to ADD an image beside a RadMenuItem without using the RadMenuItem's ImageUrl property or the other properties that allow me to put an image on a menu item.
I am able to do this for the root level menu by using:
Dim imgImage As Image = New Image |
imgImage.ImageUrl = "../images/editicon.img" |
mnuItem.Parent.Controls.Add(imgImage) |
|
However, the added image is positioned below the menu item not beside. And the added image doesn't even appear for a menu item's child menu.
How can I achieve this?
Thanks in advance.
Virgil