Zend Framework loading views without re-loading the layout template

__JimmY__

New Member
I need to load a profile layout and then have all of the profile views load into that layout without re-loading the layout, so that I can cache a big json object in the clients browser, to allow for data to be available on subsequent views, without having to do a new HTTP request for every view in my profile controller.Is it possible to load the layout template and then load views into it, by disabling their layout template, so that the layout template never re-loads, only the view within?Another option would be to have an iframe inside of a layout and then load the views into the iframe, by disabling their layouts, so that just the view is rendered.Just need to know if this is possible and what the best option would be.Thanks in advance :)
 
Top