Dear all, Following is the sequence of my application opening process:
My problem is that my user menu panel is initialized before my login screen is called and even before my application
When the login is finished a procedure is called which in turn calls the LOV where the user selects the company. Upon finishing this LOV a procedure is called which in turn shows the menu with the following command : `
This is only place my menu is called. My initial login panel or mainPanel has no reference to it. Now, even if I comment the above script still the menu panel is initialized though I never make a call to the panel. If I comment it, the menu is not displayed, but still it is being initialized. Can somebody help me to solve this issue. I want the manu panels to be initialized only after the login screen is called and then the LOV is called and exited. With regards. George |
Hi George, A Panel may be initialzed in runtime when 1. It is referenced by an API 2. One of its parent panels is initialized. 3. One of its child panels is initialized. In general, you should not worry about this when building applications. You should use Formspider security repository to set access privileges. You can modify the content of a panel at any point via API's regardless if it is initialized or not. Kind Regards, |