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
60
WebExplorerBar used with user control
posted

I should preface this post by saying that I'm fairly new to ASP.Net development and very new to the Infragistics controls.  I would appreciate any help that I'm given -especially if there are any code samples out there related to what I'm trying to do.  I've researched this forum and several others and cannot find anything close to answering my question.   

I have added a user control to an ExplorerBarGroup as an ExplorerBarItem.  Physically, this seems to work well, but I cannot figure out how to access the user control's public methods from the code-behind file of my page.  When my page loads, I need to call the "LoadMeUp" method on the user control so that it will display the appropriate values.  Any help would be greatly appreciated.  Here is the code for the control:

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

<ig:WebExplorerBar ID="newStationExplorerBar" runat="server" Width="988px"  GroupContentsHeight ="">

<Groups>

 

 

<ig:ExplorerBarGroup GroupContentsHeight="" Text="Distributor">

 

 

<Items>

 

 

<ig:ExplorerBarItem>

 

 

<Template>

 

 

<uc1:ucDistInfo ID="ucDistInfo1" runat="server" />

 

 

</Template>

 

 

</ig:ExplorerBarItem>

 

 

</Items>

 

 

</ig:ExplorerBarGroup>

 

 

 

</Groups>

 

 

 

<ExpandButton AltText="Expand button"></ExpandButton>

 

 

<CollapseButton AltText="Collapse button"></CollapseButton>

 

 

 

</ig:WebExplorerBar>