Selection all item group

Hello

I am using treetable. And to work with check boxes use the column:

{ id:“ch1”, header:"",width: 40, template:"{common.checkbox()}"}

Tell me how I can make a selection all item group, by clicking on the checkbox in the name of the group?

можно использовать что то вроде следующего кода
при клике на чекбокс, код проставит тоже значение чекбокса всем вложенным строкам.

on:{
    onCheck:function(row, column, value){
           this.data.eachChild(row, function(item){
                item[column] = value;
           }
    }
}

Спасибо большое!помогло