HI Iam trying to replace ASP.NET classic control webpanel (V10) with webexplorerbar. (v 12)
Doing so iam trying to edit the changes in markup file. But for ther header section which was previously used in webpanel Iam getting warnings in webexplorerbar as follows
Warning 12 Validation (XHTML 1.0 Transitional): Element 'header' is not supported.
similarly i get warnings for other elements as well like templates
Please suggest me how can i rectify it..Below is the snippet of .ascx file
<igmisc:WebExplorerBar ID="wpLeftLinksPanel" runat="server" CssClass="wp_linkPanelOuter" StyleSetName=""> <Groups> <Header Text="Last Viewed Panel" ExpandedAppearance-Styles-CssClass="wp_linkPanelHeaderExpanded" CollapsedAppearance-Styles-CssClass="wp_linkPanelHeaderCollapsed" HoverAppearance-Styles-CssClass="wp_linkPanelHeaderHover">
Hello sandy_joggy,
Upgrading from the WebPanel to the WebExplorerBar isn’t a direct copy an replace as they are different controls and have different properties. Here is an example WebExplorerBar:
<ig:WebExplorerBar ID="WebExplorerBar1" runat="server" GroupContentsHeight="" Width="250px"> <Groups> <ig:ExplorerBarGroup GroupContentsHeight="" Text="Group"> <Items> <ig:ExplorerBarItem Text="Item"> </ig:ExplorerBarItem> <ig:ExplorerBarItem Text="Item"> </ig:ExplorerBarItem> </Items> </ig:ExplorerBarGroup> <ig:ExplorerBarGroup GroupContentsHeight="" Text="Group"> <Items> <ig:ExplorerBarItem Text="Item"> </ig:ExplorerBarItem> <ig:ExplorerBarItem Text="Item"> </ig:ExplorerBarItem> </Items> </ig:ExplorerBarGroup> </Groups> </ig:WebExplorerBar>
I recommend you see the following sample and documentation:
http://samples.infragistics.com/aspnet/Samples/WebExplorerBar/Navigation/KeyboardNavigation/Default.aspx?cn=explorer-bar&sid=76b75ff7-f08e-4010-b184-995c022408d4
http://help.infragistics.com/NetAdvantage/ASPNET/2012.1/CLR4.0/?page=Web_WebExplorerBar.html
http://help.infragistics.com/NetAdvantage/ASPNET/2012.1/CLR4.0/?page=WebExplorerBar_Getting_Started_with_WebExplorerBar.html
Please let me know if you have any questions concerning this matter.
Sincerely,Mike P.Developer Support EngineerInfragistics, Inc.www.infragistics.com
Thanks for the reply Mike.
Ok so you mean it would be as good as writing from sratch right?
And also there are few other controls which we use in our projects.
Infragistics35.WebUI.UltraWebGrid.ExcelExport.v10.2.dllInfragistics35.WebUI.UltraWebGrid.v10.2.dllInfragistics35.WebUI.UltraWebNavigator.v10.2.dllInfragistics35.WebUI.UltraWebTab.v10.2.dllInfragistics35.WebUI.WebDateChooser.v10.2.dll
All above are retired controls.
So for these above controls as well would we require placing new controls from scratch?
Regards,
Suraj