И еще вопрос. Чем принципиально различается следующий код:
var cellmodel = new Ext.selection.CellModel({
listeners: {
select : {
fn: function(CellModel,record, rowIndex, colIndex,eOpts ) {
...
}
}
}
});
и
var cellmodel = new Ext.selection.CellModel({
listeners: {
select : function(CellModel,record, rowIndex, colIndex,eOpts ) {
...
}
}
});
, т.е. чем является "fn:" и на что влияет?