2
我有這樣的代碼:參考從在煎茶觸摸一個容器內的轉盤的xtype 2
Ext.define('play.view.Quiz', {
extend: 'Ext.Container',
xtype: 'myquiz',
config: {
fullscreen: true,
layout: 'vbox',
title: 'My Quiz',
items: [
/* Questions */
{
xtype: 'my_questions'
},
]
}
});
和
Ext.define('play.view.Questions', {
extend: 'Ext.Carousel',
xtype: 'my_questions',
config: {
defaults: {
styleHtmlContent: true
},
items: [
{
html : 'Item 1',
style: 'background-color: #5E99CC'
},
{
html : 'Item 2',
style: 'background-color: #759E60'
},
{
html : 'Item 3'
}
]
}
});
這些問題不會顯示,但是當我把測驗項目內的問題,他們顯示。
是否可以從容器中引用傳送帶xtype?
試過了,仍然沒有喜悅。 – BillyMedia 2012-07-08 18:17:23
只需在'container'main'myquiz'上更改'layout:'fit''的佈局:'vbox''。 – hekomobile 2012-07-08 18:30:04
謝謝,它對它進行了排序。 – BillyMedia 2012-07-08 19:00:58