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
197
Question about TreeView Example
posted

I'm trying to follow an example at http://samples.infragistics.com/2008.2/webfeaturebrowser/default.htm

 The cs file in the Page_Load has:

 WebPanel2.Visible = WebSamplesCS.Config.ShowDescription;

 What is WebSamplesCs.Config.ShowDescription?  What should I use in my code where this line is?

Thanks,

Rich

Parents
No Data
Reply
  • 28464
    Verified Answer
    posted

    Hello Rich,

    This code is specific for the samples framework only and Config is an internal class used for global settings. In your case, you can just set WebPanel2.Visible to true or false based on your scenario, it is a boolean property.

Children