columns: [
{ width: "50px", sortable: false, headerTemplate: '<input id="checkAll" type="checkbox" title=\"일괄체크\" aria-label=\"일괄체크\" data-toggle=\"tooltip\" data-placement=\"top\" />', template: kendo.template($("#checkboxTemplate").html()) },
dataBound : function() {
$("#checkAll").prop("checked",false);
// 일괄체크/해제
$("#checkAll").on("click", function(){
if($(this).prop("checked")) {
$('input:checkbox[name="checkBox"]').each(function(index) {
$(this).prop("checked", true);
});
} else {
$('input:checkbox[name="checkBox"]').each(function(index) {
$(this).prop("checked", false);
});
}
}).css("cursor","pointer");