we were able to get most of our code outside of the initialize method. one important learning, in trying to port the initialize() to pageBeginRender
- pageBeginRender never gets called for a DirectLink, but only for Form Submits On 8/4/06, Nick Westgate <[EMAIL PROTECTED]> wrote:
Hi Chris. I don't know, you'd have to check the source, but finishLoad()doesn't really belong in this list because it's a method on IComponent, not IPage. Cheers, Nick. Chris Chiappone wrote: > I'm curious where does finishLoad fit into this order? > > On 8/3/06, Nick Westgate <[EMAIL PROTECTED]> wrote: > >> >> Hi Karthik. >> >> Expert or not, here's something I posted on the dev list recently. >> The +++ event was a possibility discussed for T4.1 final, the reason >> being that if you initialise in pageValidate, ExternalPages may break. >> >> Page event order: >> >> pageAttached >> pageValidate - check user is allowed to access page >> activateExternalPage - setup here - but only for external pages >> +++ pageInitialize - setup here - not called for rewind? >> pageBeginRender - setup here - but check for rewind >> pageEndRender >> pageDetached >> >> initialize() was called on page creation, and when pages were returned >> to the pool. I'm not sure of its current status, but it should really >> have been used only for static values, if at all. pageBeginRender() is >> the traditional location for per-page initialisation. >> >> Cheers, >> Nick. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
-- Thanks, Karthik