Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create a simple plugin for CKEditor 3. When clicked, I make an request to the server to get a list of records. I then want to create a checkbox for each of these records and vary the output based on which ones are checked.

I can get the list of checkboxes to display by creating an array and populating it based on the data from the request:

            var folders = new Array();

            var request = $.ajax({
              url: '/folders'),
              type: "GET",
              dataType: "json",
              async: false
            });

            request.done(function(data) {
                $.each(data, function(i,item){

                folders[i] = {
                            'type' : 'checkbox',
                            'id' : i,
                            'label' : item.title
                }

              });
            });

I then use the array to return the form elements...

return {
                title : 'List',
                minWidth : 400,
                minHeight : 200,

                contents :
                [
                    {
                        id : 'tab1',
                        label : 'Basic Settings',
                        elements : folders
                    }
                ],
                onOk : function()
                {

                }
            };

But this is where I get stuck. How can i put each of the checkboxes into some sort of logical grouping and then go through them all to see which ones were checked?

Any advice appreciated.

Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.