Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I currently have a model called project_todo and it has a column called done that is a boolean. I have it setup so I can currently drag this from one side of the app to the other, dragging it from todo to done. However, it doesn't save obviously.

What I need to do is on drag toggle the boolean and I believe what I need to do is post via JS/jquery to the update path to do it. However, I'm not exactly sure what this should look like.

Can anyone give me some example code and/or point me in the right direction.

So I could do something like this:

$.ajax({
  type: 'POST',
  url: '/project_todo/<%project_todo.id%>/edit',
});
share|improve this question

2 Answers

up vote 1 down vote accepted

let's say we have a link that clicking on it should update the column:

<%= link_to 'update project', edit_project_todo_path(project_todo), :class => 'updateProject' %>

then js may look like:

$('.updateProject').click(function(event) {
  event.preventDefault();

  $.ajax({
    type: 'POST',
    url: $(event.target).attr('href')
  });
});

You can do this with any event you want, if it's a form you can use action attribute of the form

share|improve this answer

I'm not sure, that I understand what you mean, but you can add a script tag to erb file, or haml, and you could add <%=j project_todo.id%>, maybe It helps. Definitely, you can't put code to js file in rails. Or you can create js.erb file and render it.

share|improve this answer
I guess it is lame answer according to views count and no answers. – Alder Sep 20 '12 at 15:23
1  
Yeah, I know I can add the script tag, I'm asking more what should I put in the script tag. I think I have this figured out, maybe, but I am letting the controller and not javascript do most of the work. – NoahClark Sep 20 '12 at 15:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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