Get All Checked Child Items Kendo Grid

133 Views Asked by At

I have a Kendo grid that has Child elements as shown in the Image below. Is there a way to read the elements that are checked.

enter image description here

1

There are 1 best solutions below

0
On BEST ANSWER

It depends on when you want to find out what checkboxes are selected, but essentially it will work this way.

You simply add a listener to a button or a common class among the checkboxes that looks at the checkboxes and returns the checked ones.

The example from Kendo: http://dojo.telerik.com/UhANu

Specifically,

$("#showSelection").on("click", function () {
        var checked = [];
        for(var i in checkedIds){
            if(checkedIds[i]){
                checked.push(i);
            }
        }

        alert(checked);
    });

I've changed the above to a .on() instead of .bind because it's what I'm more familiar with being the idiomatic way of doing listeners, but both technically work.

If you'd rather have value of the checkboxes save each time you change them it'd be something like this:

$(".checkbox").on("click", function () {
        var checked = [];
        for(var i in checkedIds){
            if(checkedIds[i]){
                checked.push(i);
            }
        }

        $('#checked-boxes').val(checked);
    });

and in your html create an element that holds the values:

<label for="checked-boxes">Checkboxes that have been selected:</label>
<input type="text" id="checked-boxes" name="checked-boxes">