我是extjs的新手,多选择器中的宽度只能以像素为单位,而不能按百分比来指定。
因此,我的多重选择器根据屏幕分辨率的不同而不同。
如何解决此问题?
答案 0 :(得分:0)
你应该使用布局:'fit'配置为父容器。
您可以参考以下示例了解示例用法。
Ext.create('Ext.panel.Panel', {
title: 'Fit Layout',
width: 300,
height: 150,
layout:'fit',
items: {
title: 'Inner Panel',
html: 'This is the inner panel content',
bodyPadding: 20,
border: false
},
renderTo: Ext.getBody()
});
希望这会有所帮助。
感谢。