是的,即使我嘗試過使用floatingCls,它不工作。所以我嘗試了壓倒Sencha的CSS課。
在這裏它的下面所示的工作代碼:
App.js文件代碼:
Ext.application({
name: 'StackOverFlowDemo',
launch: function() {
var demo = Ext.create("Ext.form.Panel", {
fullscreen: true,
scrollable:false,
items: [
{
xtype: 'selectfield',
label: 'Choose one',
options: [
{text: 'First Option', value: 'first'},
{text: 'Second Option', value: 'second'},
{text: 'Third Option', value: 'third'}
]
}
]
});
Ext.Viewport.add(demo);
}
});
這裏的,你需要在你的HTML文件中設置index.css代碼。
index.css
.x-floating{
background-color: darkslateblue;
}
.x-panel.x-floating, .x-msgbox, .x-form.x-floating{
background-color: grey;
}
.x-innerhtml {
background-color: lightpink;
}
.x-inner x-size-monitored x-paint-monitored x-scroll-scroller{
background-color: dodgerblue !important;
}
.x-anchor{
background-color: grey !important;
}
.x-webkit .x-anchor.x-anchor-right{
background-color: grey !important;
}
.x-panel.x-floating .x-panel-inner .x-list{
background-color: lightblue !important;
}
.x-list .x-list-item.x-item-selected.x-list-item-tpl{
color:darkred;
}
.x-list-label{
}
或者你也可以通過使用CSS瓦爾(即更換主題皮膚)做到這一點。
非常感謝你... –
你的,歡迎:) –