我對包含少量控件的視圖有看法。所有的控件都是可見的,而滑塊根本不可見。我已經看到here的例子,但它不起作用。有人能指出我缺少的配置嗎?ExtJS滑塊在視圖上不可見
Ext.define('KPS.view.LaunchPageMain', {
extend: 'Ext.window.Window',
requires: ['Ext.slider.Single'],
alias: 'widget.launchpagemain',
layout: 'fit',
maximized: true,
height: 500,
width: 500,
title: 'KPS',
modal: true,
draggable: false,
tools: [{
xtype: 'sliderfield',//slider is also not working.
width: 200,
value: 3,
increment: 1,
minValue: 1,
maxValue: 5
}, {
xtype: 'button',
itemId: 'btnUserType',
text: 'User Roles',
menu: {
xtype: 'menu',
showSeparator: false,
items: [{
xtype: 'checkboxgroup',
columns: 1,
itemId: 'selectionUserTypes',
vertical: true,
items: [{
boxLabel: 'User',
name: 'userSelection',
inputValue: 'U'
}, {
boxLabel: 'Admin',
name: 'userSelection',
inputValue: 'A'
}, {
boxLabel: 'Super Admin',
name: 'userSelection',
inputValue: 'S'
}]
}]
}
}, {
xtype: 'button',
itemId: 'btnLogout',
text: 'Logout'
}],
items: [{
xtype: 'contentView'
}]
});
給它工作的人。問題是我正在使用自定義主題。有了這個主題,它是不可見的。使用默認的主題,它只是工作正常。我應該早點檢查一下。 – user1640256 2014-09-04 14:40:17