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
220
Set GroupContentHeight to 100% height of WebExplorerBar
posted

Hi all,

Hoping someone can help here.  I'm using 10.1.

I have a WebExplorerBar which has 3 group bars.  I've set the height of the WebExplorerBar  to 600px and I've set the property GroupExpandBehavior to SingleExpanded which will mean at least one group will always be expanded (default is the first).  When I set the GroupContentsHeight to 100%, I'm expecting it to expand filling the entire WebExplorerBar container area.  So if I click on the first group bar, the other 2 should be pushed to the bottom of the explorer container.  But this is not happening.  Am I missing something?  I tried to venture down Client Side scripting approach but no luck.  Any suggestions will be much appreciated?  My sample code is below:

Thanks,
Assad

<div>
 
<ig:WebExplorerBar ID="WebExplorerBar1" runat="server" Width="250px" Height="500px" GroupContentsHeight="100%" MaxGroupHeight="100%" GroupExpandBehavior="SingleExpanded">
<Groups>
  <ig:ExplorerBarGroup Text="Menu 1">
    <Items>
     
<ig:ExplorerBarItem Text="Item 1.1"></ig:ExplorerBarItem>
     
<ig:ExplorerBarItem Text="Item 1.2"></ig:ExplorerBarItem>
   
</Items>
 
</ig:ExplorerBarGroup>
 
<ig:ExplorerBarGroup Text="Menu 2">
   
<Items>
     
<ig:ExplorerBarItem Text="Item 2.1"></ig:ExplorerBarItem>
   
</Items>
 
</ig:ExplorerBarGroup>
 
<ig:ExplorerBarGroup Text="Menu 3">
   
<Items>
     
<ig:ExplorerBarItem Text="Item 3.1"></ig:ExplorerBarItem>
   
</Items>
 
</ig:ExplorerBarGroup>
</Groups>
<ExpandButton AltText="Expand button"></ExpandButton>
<CollapseButton AltText="Collapse button"></CollapseButton>
</ig:WebExplorerBar>
</div>