मैं अपना आवेदन एक दृश्य से कैसे प्राप्त कर सकता हूं? उदाहरण के लिए मेरे पास एक आवेदन Boo
है और एक दृश्य है जिसका नाम Boo.view.Foo.List
है और मैं को List
दृश्य में प्राप्त करना चाहता हूं।एप्लिकेशन को देखने से कैसे प्राप्त करें?
संपादित करें:
इस कोड को देखें, और लाइन पर देखने के 20.
Ext.define('Boo.view.Foo.List', {
extend: 'Ext.panel.Panel',
model: 'Boo.model.FooModel',
alias: 'widget.foolist',
store: 'FooListStore',
initComponent: function() {
this.columns = [
{
text: "Hello world",
dataIndex: 'Time',
flex: 1
},
{
xtype: 'actioncolumn',
width: 50,
items: [{
icon: 'cancel.png',
tooltip: 'Cancel',
handler: function (grid, rowIndex, colIndex, col, e) {
//Now I need to get the application here, for example with self.getApplication() or something like this.
}
}]
}];
this.callParent(arguments);
}
});
आप और अधिक व्याख्या कर सकते हैं का शुभारंभ-विधि में निम्नलिखित पंक्ति जोड़? –
फिर से कोड देखें। –