Sha256: 909e600d4d86c488b95fd76a5e58f1e559f682da149738ed96dd8589eb976384

Contents?: true

Size: 1.49 KB

Versions: 3

Compression:

Stored size: 1.49 KB

Contents

PJAX for Rails 3.1+
===================

Integrate Chris Wanstrath's PJAX into Rails 3.1+ via the asset pipeline.

To activate, add this to your app/assets/javascripts/application.js (or whatever bundle you use):

    //=require pjax

All links that match $('a:not([data-remote]):not([data-behavior])') will then use PJAX. 

The PJAX container has to be marked with data-pjax-container=true, so for example:

    <body>
      <div>
        <!-- This will not be touched on PJAX updates -->
      </div>

      <div data-pjax-container="true">
        <!-- PJAX updates will go here -->
      </div>
    </body>


FIXME: Currently the layout is hardcoded to "application". Need to delegate that to the specific layout of the controller.

Examples for redirect_pjax_to
-----------------------------

    class ProjectsController < ApplicationController
      before_filter :set_project, except: [ :index, :create ]

      def index
        @projects = current_user.projects
      end
  
      def show
      end
  
      def create
        @project = Project.create params[:project]
        redirect_pjax_to :show, @project
      end
  
      def update
        @project.update_attributes params[:project]
        redirect_pjax_to :show, @project
      end
  
      def destroy
        @project.destroy

        index # set the objects needed for rendering index
        redirect_pjax_to :index
      end
  
      private
        def set_project
          @project = current_user.projects.find params[:id].to_i
        end
    end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pjax-rails-0.1.4 ./README.md
pjax-rails-0.1.3 ./README.md
pjax-rails-0.1.2 ./README.md