Re: Back button and Ajax

2008-03-18 Thread Claude Schneegans
Thanks all for your replies. These solutions are implemented in very complex framework. So I,m trying to understand how the solution works and implement my own version. I'm trying to keep my applications simple, my AJAX function is just about 12 lines long. I already have a solution working

Re: Back button and Ajax

2008-03-18 Thread Rey Bango
Hi Claude, If you want a solution that's not tied to a specific framework, then checkout Really Simple History (http://blogs.pathf.com/agileajax/2007/12/really-simple-h.html). It was one of the first history libraries developed and is actively maintained. Rey... Claude Schneegans wrote:

Re: Back button and Ajax

2008-03-18 Thread Claude Schneegans
checkout Really Simple History Thanks, I found this one too. But it's still not as simple as it claims. I'm getting the details here: http://ajax.suaccess.org/options-and-efficiencies/fix-the-browser-back-button/ and I'm implementing the solution to my own ajax solution. --

RE: Back button and Ajax

2008-03-18 Thread Dennis Powers
But it's still not as simple as it claims. Is anything really? :) Dennis Powers UXB Internet - A website design and Hosting Company http://www.uxbinternet.com/ ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: Back button and Ajax

2008-03-18 Thread Claude Schneegans
For those who may be interested in the solution, I finally found it: The solution is NOT USE AJAX! Use the Remote scripting with hidden Frames instead ! 100 times simpler! In your main template 1. add an iframe in your main page, that will not display ie: iframe

Back button and Ajax

2008-03-17 Thread Claude Schneegans
Hi, Ajax is a nice feature, for instance when only some part of a page must be changed, one can populate some internal DIV instead of reloading the entire page. But the problem is when the visitor hits the back button: he then doesn't get back to the previous sub page, but to the page he

Re: Back button and Ajax

2008-03-17 Thread Josh Nathanson
- From: Claude Schneegans [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, March 17, 2008 11:45 AM Subject: Back button and Ajax Hi, Ajax is a nice feature, for instance when only some part of a page must be changed, one can populate some internal DIV instead of reloading

RE: Back button and Ajax

2008-03-17 Thread Andy Matthews
jQuery has a history plugin that makes managing state for AJAX calls a snap. http://plugins.jquery.com/project/history andy -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2008 1:45 PM To: CF-Talk Subject: Back button and Ajax Hi, Ajax

Re: Back button and Ajax

2008-03-17 Thread Sonny Savage
The YUI package has a browser history manager which does exactly that: http://developer.yahoo.com/yui/history/ On Mon, Mar 17, 2008 at 2:45 PM, Claude Schneegans [EMAIL PROTECTED] wrote: Hi, Ajax is a nice feature, for instance when only some part of a page must be changed, one can

Re: Back button and Ajax

2008-03-17 Thread Adam Haskell
Note that the version of YUI packaged with CF8 is not the most current version so if you use the packaged YUI component the browser history API may not match exactly. I think CF8's YUI is 2 versions behind now. That being said i still recommend YUI's browser history implementation it is fairly