0

古いextjs 3.2.0では、次のDataViewような機能があります

click: function(view, index, node, e) {
     Ext.get(node);
}

に変更するextjs 4.1で

itemclick: function( view, record, item, index, e, eOpts ) {
     Ext.get(item); //not the same with Ext.get(node);
}

しかしExt.get(item)、と同じではありませんExt.get(node)nodeextjs 4.1の属性は何ですか

4

0 に答える 0