I use extjs mvc and have a column that has renderer
{
text: __('Profiler.Personage.Settings.Active'),
name: 'AdminDeny',
renderer: function (value, metaData, record, row, col, store, gridView) {
if (value == null || value == true) {
return '<a class="Deactive" href="javascript:void(0);"><img src="' + icon.Deactive + '" alt="Is Default" title="' + __('Profiler.Personage.PhoneGrid.IsDefault') + '" class="grid-icon" /></a>';
} else {
return '<a href="javascript:void(0);"><img src="' + icon.IsDefault + '" alt="Is Default" title="' + __('Profiler.Personage.PhoneGrid.IsDefault') + '" class="grid-icon" /></a>';
}
}

when click on a i want get value of cell in controller
It’s a simple. You need use actioncolumn:
And in youre controller:
See live example on github:
http://htmlpreview.github.com/?https://github.com/werdender/ext4examples/blob/master/actioncolumns.html