我使用 extjs mvc 并且有一列有渲染器
{
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>';
}
}
当点击a
我想在控制器中获取单元格的值