I wanted to save a function reference to use it later like this
var fn = Ext.grid.column.Column.prototype.renderer;
and then
fn.apply(this, arguments);
but
Ext.grid.column.Column.prototype.renderer
is returning false.
Am I missing something ?