Hi,
I am trying to use WebDatamenu in Asp.net application. But I have failed to apply a style "RedPlanet" to webDatamenu control. Please brief me in deatil steps to apply the Style to webDatamenu control.
Even the how the images will be bind to perticualr control.
Please brief me with some simple sample will be appreciable.
I have tried Online sample it looks like simply you made it Complex.
Thanks
Anil kumar
use
StyleSetName="Default" , such as Office2007Blue,Office2007Black,IG ....
I have applied the StyleSetName to "RedPlanet" but it is not working. So I want the necessary files and changes required to apply the Style. Could you please brief me.
Please if you describe with sample will be greatly appreciated.
Code Snippet :-
<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title> <link href="Styling/sampleWebDataMenu.css" rel="stylesheet" type="text/css" /> <link href="../ControlPanel/ControlPanel.css" rel="stylesheet" type="text/css" /> <script src="../ControlPanel/ControlPanel.js" type="text/javascript"></script></head><body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <div> <%-- <ig:webdatamenu runat="server" id ="mdMenu" ></ig:webdatamenu>--%> <ig:WebDataMenu ID="WebDataMenuSample" runat="server" DataSourceID="MenuDataSource" MaxDataBindDepth="1" Width="100%" StyleSetName="RedPlanet"> <GroupSettings Orientation="Horizontal" /> <DataBindings> <ig:DataMenuItemBinding DefaultText=" " TextField="Text" ValueField="Value" ImageUrlField="ImageUrl" NavigateUrlFields="URL" TargetField="_blank" ToolTipField="Text" /> </DataBindings> </ig:WebDataMenu> <asp:XmlDataSource runat="server" ID="MenuDataSource" XPath="/MenuData/CommunitySiteMenu/Menu" DataFile="~/App_Data/MenuData.xml" /> </div> </form></body></html>