tags:

views:

286

answers:

1

Is there any way of ajaxifying Drupal so that page reloads are not reloads but just content modifications?

So menus would be updated, content would be updated and any blocks etc. would be appropriately modified but without the overhead of spitting out the whole page to the the user for client-side fixing up and without losing the nice javascript UI that Drupal has (like collapsible fieldsets, draggable table items and other ajaxified modules etc.).

+1  A: 
  1. the simplest solution is to use the ajax pagers in your views (this works only for one block at time or for the main content)

  2. to ajaxify every form you can use http://drupal.org/project/ajax

if you want to ajaxify everything then a page reload is the better option to go =]

gpilotino