Hi there, i've run into a problem specifically with implementing ajax into a system im building. Basically I'm using the Jquery Ajax framework to call controllers and actions in the background into a main index template rather than linking directly in the nav. The issue here is, I can only render the inner template on the controller / action being called or else it will redisplay the main template.

Is there any such Ajax integration as yet, so a view can be changed for an ajax view and then a view can be normal with the index template on a normal view ?

The other question here is, Ive been using PEAR's Html_Ajax for quite some time, which I use it as a proxy to Ajax Service classes, which then call the class directly to output rather than simply calling the page in the background which runs the entire controller process. Is there such a thing implemented yet at all ?

It might make it easier and faster than running a get callback to a page, currently ive worked out enough to have to setup functions for each nav item like so

function support()
  {
          $("#content").load("/support");
  }



Reply via email to