I am new to EXTJS. I have a grid , where I have checkbox column . What I wanted is , how to capture the check or uncheck events happening in the checkbox .
Here is my code for checkbox in my grid
columns : [
{
xtype: 'checkcolumn',
header: 'Enabled',
dataIndex: 'isEnabled',
width: 55
},
....
]
Please help