I'm trying out pjax for an app I'm developing but I've kinda hit a wall.

Maybe I'm going about this the wrong way, let me explain.

In the app, I have a main menu on top, with the different sections. Each of the links in this menu are pjax enabled, meaning that only the body of the application will change.

Normally, When you click a link with no pjax, the document.ready method will be triggered. I use this to bind events to buttons like the following example.

here is my users.js.coffee file

loaded = false;
$ ->
  $("#btn_new_user").bind "click", (event) ->
    if not loaded
      @path = $('#btn_new_user').attr("path")
      $("#new-users-container").load(@path)
      loaded = true
    $("#new-users-container").slideToggle()

As you can see in this example, when the "users" page finishes loading, it will bind a button with an event that will load a form into a div and animate it to show it.

However, when I start in a different section of the admin and click on the Users link to show this button, the event is not binded. When I reload the page in the Users section, the document.ready triggers and the button works fine.

Is there a better technique to bind the events to buttons or is there some way to trigger document.ready on pjax?

Thanks.

link|improve this question

78% accept rate
Is this pjax or ajax, I am seeing pjax for the first time – refhat Nov 12 '11 at 9:09
this is coffeescript, it's a simplified way of writing javascript. pjax is just a rails plugin that simplifies and speeds up the loading of pages. – Hector Villarreal Nov 14 '11 at 15:12
feedback

3 Answers

up vote 0 down vote accepted

Ok, learned a couple of things yesterday.

First, declaring coffeescript like that will make the code available only to that file and not accessible anyplace else.

The common way around this is, for example

Users =
   aMethod: -> 
      // some code


window.Users = Users

then in some other place you can do

window.aMethod

anyway, that was just part of the problem, the real solution was using the delegate http://api.jquery.com/delegate/ method, which allows you to bind elements without them being there.

link|improve this answer
feedback

I am facing the same problem with pjax. I am looking at evaluating one of the solutions given in Can I call $(document).ready() to re-activate all on load event handlers?

link|improve this answer
I could get the client side validations also working by calling ` $('form[data-validate]').validate();` in the end.pjax or pjax:end call. – Pratik Khadloya Jan 8 at 1:04
feedback

Here's how I'm currently doing this.

  1. Use the delegate binding as indicated here for events.
  2. For other initialization, implement it this way (in raw Javascript)

    window.pjax_load = function() {
      $('#foo').do_whatever();
      ...
    }
    
    $(document).ready(function() {
      // setup events etc
    
      window.pjax_load();
      $('a').pjax( "#container" );
      $('#container').on('pjax:end', function() { window.pjax_load(); });
    });
    
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.