5/23/2011 9:49:28 PM
Title:
Use of creation policy
Hi All,
Please explain the use of creation policy?
With Regards,
krishna
5/25/2011 9:04:47 AM
creationpolicy can be used to defer the creation of components inside some container until they are required. By default its auto which means that components will be created when they are required. They are not created until they are hidden.
using this property You can force them to be created whether they are hidden of not and also you can stop them from creating whether they are required or not.
6/8/2011 10:22:30 PM
I always try to keep myself away from creation policy. Default value of this property is good enough. I do not alter it unless required in some special cases like optimizing a application start time , for larger projects. For larger projects I can delay the creation of some components that are not immediately required using creationpolicy set to false.