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 want to save the values of the checkbox using ajax.

Here is my current code that I wish to update to use ajax.

here is the view

    <?php $i = 0;
        foreach ($summary as $sum) {
            ?>
            <tr class="font-size12">
                <td><p><?php echo $sum['posts']['title']; ?></p></td>
                <td class="width450"><p><?php echo $sum['posts']['content']; ?></p></td>
                <td><p class="margin-left28"><?php echo $sum['members']['username']; ?></p></td>
                <td><p><?php echo $sum['posts']['deadline']; ?></p></td>
                    <?php echo $this->Form->create("Posts", array("action" => "update_checkbox")) ?>
                <td>
                    <?php
                    echo $this->Form->input('Post.' . $i . '.id', array("type" => "hidden", "label" => false, "value" =>
                        $sum['posts']['id']))
                    ?>
                    <?php
                    echo $this->Form->input('Post.' . $i . '.done', array("type" => "checkbox", "label" => false, "value" => "1", "id" => "idCheck[]", "onclick" => "getboxes()"))
                    ?>
                </td>
            </tr>

            <?php $i++;
        }
        ?>
    </table>
 <?php echo $this->Form->end() ?>

the javascript

function getboxes(){
    $("idCheck[]").click(function(){
        $.ajax({
            url: '../../../../Controller/PostsController',
            data: { action: 'checkingBox' },
            type: 'post'
//            ,
//            success: function(output) {
//                alert(output);
//            }
        });
    });
}

the controller

public function update_checkbox() {
        //    debug($this->data);
        $var = $this->Post->saveCheckBox($this->data);
        $this->set("result", $var);
    }

the model

 public function saveCheckBox($checkbox) {
        debug($checkbox);
        $this->saveAll($checkbox['Post']);
    }

edit: I added a listener in the checkbox

share|improve this question
How far have you gotten? Have you put listeners on the checkboxes that fire a function when they're changed? If you've done that, look into the JQuery ajax function. It can send a post request with data, which behaves just like a normal posted form. – swiecki Jul 2 '12 at 3:23
@swiecki yeps I added a listener in the checkbox, but still wont save a value in the DB :( – Catherine Jul 3 '12 at 7:38

1 Answer

According to your current code, there are two ways to store check-boxes values into the database. Either You will have to manipulate the posted data received into your ajax_method() and make it the array like below

[Post] => array(
                [0] => ....
                [1] => ....
                );

Then you c an use $this->Post->saveAll($this->request->data);

or you can use the following code to save checkbox values into the database.

echo $this->Form->input('Case.CHECK_ID][', array('type' => 'checkbox'));

Then you can use saveAll() method.

share|improve this answer

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.