Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
235
WebExplorerBar replacement for WebPanel
posted

I am upgrading to the WebExplorerBar (as per the migration guide) from the previous WebPanel control, however, I was using the Header property throughout most of my application and that property seems to have completely disappeared from the WebExplorerBar.

Please advise as to what the supposed replacement is for the Header property in the new WebExplorerBar.

Thanks.

Parents
  • 16310
    Offline posted

    Hello Samir,

    Thank you for posting in Infragistics forum !

    In the WebExplorerBar control I suggest you use the ExplorerBarGroup property. For example if you had this configuration of the WebPanel control:

    Code Snippet
    1. <igmisc:WebPanel ID="WebPanel1" runat="server">
    2.     <Header Text="Last ViewPanel">
    3.     Header>
    4.     <Template>Item<Template>
    5. igmisc:WebPanel>

    it would become like this with the WebExplorerBar control:

    Code Snippet
    1. <ig:WebExplorerBar ID="WebExplorerBar1" runat="server">
    2.     <Groups>
    3.         <ig:ExplorerBarGroup Text="Top Panel" >
    4.             <Items>
    5.                 <ig:ExplorerBarItem Text="Item">
    6.                 ig:ExplorerBarItem>
    7.             Items>
    8.         ig:ExplorerBarGroup>
    9.     Groups>
    10. ig:WebExplorerBar>

    You can also refer to http://help.infragistics.com/Doc/ASPNET/2014.1/CLR4.0/?page=Web_WebExplorerBar.html for help getting started with the WebExplorerBar control.

    I hope this helps. If you have any further questions on the issue, do not hesitate to contact us, I will be glad to help.

Reply Children
No Data