Hi
I have a kendo hierarchical grid
within the detail grid i have a checkbox column. How do i get the dataitem when the checkbox of detail grid is checked ?
in the below code I want to fire a click event on the checkbox and get all data using dataItem
please help.
here is my code snippet of detail grid (inner grid)
$('<div />').appendTo(e.detailCell).kendoGrid({
dataSource: {},
schema: {},
columns: [
{
template: "<input type='checkbox' class='chkTransferAsstReq' id='chkSelectAssetMove'/>", width: '30px'
},
other columns 1,
other columns 2,
]
})