I've accomplished complex functionality like that in the past with javascript, dhtml and a hidden frame. The user would interact with a specific area of the page and submit data. The javascript functions would sit on a global window level and serialize the data into xml packets that were passed to the hidden frame. The hidden frame submitted the xml to the backend and was given a response in xml, which was parsed in javascript and then redisplayed in the appropriate tile area. It was an intranet application and the technique gave us the ability to 100% cache the client layer on the clients machine. The only data that ever got sent back and forth was the xml through the hidden frame ... gave us a huge performance boost. The original application we replaced was a compiled windows app and we were able to get the speed of the web app to within 5% of the compiled windows app after the caching had synchronized. I would imagine a similar techique could be utilized with struts.
On Tue, 2 Nov 2004 08:37:14 +0100, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > >I am new to Tiles. Is it possible to present a link in one tile and have > >it fire an action that updates another tile without having to reload the > >whole page? FAQ seems to not have a lot of tiles related stuff. > > Tiles are not frames. With HTML frames, if you decide to reload only a > frame you can do it. > If you have a layout that does not use frames, you will reload the whole > page, even if you change only a sub-tile of the page. > If you want to be able to reload only a part of the page, you should use > Tiles and HTML frames together. > Ciao > Antonio Petrelli > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]