I have used examples to create a RadMenu ContextMenu. I'm able to get it to work but I can't get the box to display around the menu items like it does in the example unless I let it default. I would like to have a border around the context menu like the example has in the following link and add icons to the left of the menu item.
http://demos.telerik.com/aspnet/Controls/Examples/Integration/GridAndMenu/DefaultCS.aspx
In the .ascx page I have
<%
@ Register TagPrefix="radm" Namespace="Telerik.WebControls" Assembly="RadMenu.NET2" %>
<radm:RadMenu ID="RadMenu1"
IsContext="True"
runat="server"
Skin="Outlook"
OnItemClick="grInvoiceDetailItems_ItemClick"
ContextMenuElementID="contextElement">
<Items>
<radm:RadMenuItem Text="WriteOff" />
<radm:RadMenuItem Text="Include In Settlement" />
<radm:RadMenuItem Text="Refund" />
</Items>
</radm:RadMenu>
I have placed the Menu.Outlook.css 'C:\Program Files\Telerik\RadControls for ASPNET AJAX Q2 2008\Skins\Outlook\Menu.Outlook.css' in my project and the images in the project but it is not putting a box around the items.
What do I need to check or do to get the box displaying around the context menu item?
What do I need to do to get an image beside my menu items?
Thank you