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
830
Hide Expand/Collapse Arrows
posted

Is there a way to hide the expand/collapse arrows which display at the top right of the panel ?

Thanks John

Parents
No Data
Reply
  • 8160
    posted

    Hi jvinnell,

    you can hide Expansion Indicator like set it's Height and Width to 0:

            <igmisc:WebPanel ID="WebPanel1" runat="server" ExpandOnClick="True" >
                <Header Text="WebTab1" >
                <ExpansionIndicator Height="0px" Width="0px" />
                </Header>
                <Template>
         
                </Template>
            </igmisc:WebPanel>

Children