This occurs because of the way these controls are written, period. The HTML content of the page must be fully rendered first, which then calls an 'onload' script to create the layouts around their container objects. It has to work this way. You may get some speed increase by using ExtJS directly, rather than utilizing the CF implementation of it. It can give you a finer degree of control. Some of these controls also come with an option to be loaded 'hidden', for which you could create your own intialization function that can be called with the ajaxOnLoad() method. You can create your own JavaScript function to 'unhide' your 'hidden' elements, and call the function <cfset ajaxOnLoad(myJSInitFunct) />. This way your items are 'rendered' while hidden, and show after they've been fully written and rendered.
Steve "Cutter" Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _____________________________ http://blog.cutterscrossing.com Dustin M. Snell wrote: > Hi List, > > > > I have been playing with CFLAYOUT (tabs) and I am not really too excited > about the way the page is drawn. I know it sounds picky but open first > loading the page ou see all the content drawn on the page first then it puts > them into the tabs. Is there any way around this? > > > > I would like it to work so that the tabs are drawn first. I wouldn't even > mind of the other content didn't even attempt to load until the tab is > selected - although that's not as important as the content being hidden > until selected. > > > > The same behavior seems to apply to CFWINDOW. I am kind of new to the Ajax > controls so sorry if this has been asked before. > > > > -Dustin > > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:294958 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

