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
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.
Rumen Stankov"] 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.
Thanks!