你能解釋一下我必須使用這個嗎?我有一個這樣的例子,但我想爲什麼我們只需在h1標籤中設置.css ID或CLASS?爲什麼我們需要這個孩子們??而當我使用相同的技術爲msg它不工作爲什麼?爲什麼我們需要在extjs中使用childEls - 在哪裏使用?
1)我們爲什麼要使用這個配置? 2)使用地點? 3)我們不能定義.css類或id和樣式嗎? 4)當我對msg使用相同的技術時,它不起作用。
Ext.onReady(function() {
// Explicitly create a Container
Ext.create('Ext.Component', {
renderTo: Ext.getBody(),
renderTpl: [
'<h1 id="{id}-title" data-ref="title">{title}</h1>',
'<p>{msg}</p>',
],
renderData: {
title: "Error",
msg: "Something went wrong"
},
childEls: ["title"],
listeners: {
afterrender: function(cmp){
console.log(cmp);
// After rendering the component will have a title property
cmp.title.setStyle({color: "red"});
}
}
});
});
對於我使用此代碼的mes。
Ext.onReady(function() {
// Explicitly create a Container
Ext.create('Ext.Component', {
renderTo: Ext.getBody(),
renderTpl: [
'<h1 id="{id}-title" data-ref="title">{title}</h1>',
'<p id="{id}-msg" data-ref="msg">{msg}</p>',
],
renderData: {
title: "Error",
msg: "Something went wrong"
},
childEls: ["title","msg"],
listeners: {
afterrender: function(cmp){
console.log(cmp);
// After rendering the component will have a title property
cmp.title.setStyle({color: "red"});
cmp.msg.setStyle({color: "green"});
}
}
});
});
謝謝!
OMG現在正在工作。沒有改變。正如你所說,它應該工作,現在工作。不知道發生了什麼。無論如何thx爲您的解釋。 – Justin 2014-10-17 08:59:49