1
vote
3answers
180 views

script not working in Ajax returned value

I am displaying item id and title.there is also a link "show items of this member".while clicking on it it will display the items of that user.I am using ajax for this.There is a script for detecting ...
6
votes
4answers
11k views

Send multiple checkbox data to PHP via jQuery ajax()

I want to submit a POST form that contains a textarea field and an input field(s) (type="checkbox" with an arbitrary/variable number of checkboxes) on my website via jQuery's .ajax(). PHP receives the ...
1
vote
3answers
2k views

How do I set a unique ID for checkboxes in a multi-record Rails form?

I've set up a Rails form roughly following the instructions in this Railscast. Here's the code for the form: <% form_tag complete_todos_path, :method => :put do %> <ul> ...
4
votes
2answers
4k views

How to have a checkbox fire an ajax call when checked or unchecked in Rails3?

In my Rails3 application, I have a group of check boxes for a list of tasks. I'd like to fire off an ajax call back to the server whenever one of the check boxes are checked or unchecked. This code ...
1
vote
5answers
13k views

checkbox - checked or unchecked with jquery and mysql

I am currently doing a system where it has to be possible to check/uncheck a checkbox. Everytime it changes status I need jquery to make and ajax call to a page, that updates the database. My problem ...
0
votes
1answer
3k views

AJAX Checkboxes

I have a server driven site using php and js. One section displays all photos that our users have uploaded, and an administrator then decides which photos to keep for final presentation. Most of the ...
1
vote
1answer
710 views

Wicket: can Checkgroup be Ajax enabled?

I have a dynamic list of choices, each represented by a checkbox. I also have a "select all" check box that selects them all. i am using a CheckGoup, CheckGroupSelector and Check and everything works ...
0
votes
1answer
201 views

submit form using ajaxform on checkbox click

I'm trying achieve what it says in the title. I'm using jQuery and I have the ajaxForm plugin that is used elsewhere in my App. The code I have currently is $('form.date-response ...
0
votes
2answers
1k views

wicket checkbox AttributeAppender

In a code that I am working on there is a normal(no ajax) checkbox to which I want to append the JavaScript onchange event to it like: checkbox.add(new AttributeAppender("onchange", ...
0
votes
1answer
1k views

Re: jQuery Multiple Checkbox Page Filter

This question is an extension of jQuery Multiple Checkbox Page Filter . It's my question exactly. I have three goals: I want to have a list of check boxes to filter Page Content. I want to return ...