我有视口:
new Ext.Viewport({
layout:'fit',
hideBorders:true,
items:[panel1,panel2,panel3],
});
现在我想在视口上方显示组合框:
var myCombo= new Ext.ComboBox({
store:myStore,
editable:false,
renderTo:Ext.getBody(),
triggerActions:'all',
mode:'local',
cls:'scales'
});
CSS:
.scales{
position:absolute,
botton:1em,
right:1em,
background-color:white
}
但它在左侧渲染。如何在右下角渲染它?
更新
现在我将组合放入 Panle:
myPanel= new Ext.Panle({
items[myCombo],
renderTo:Ext.getBody(),
cls:'scales',
border:false
});
现在我的组合在右下角。但看起来像这样:
即使我从应用程序中删除视口代码,我也会得到相同的结果。我可以用组合做点什么吗?