Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何设置 ComboBox 输入字段的宽度?我试图设置宽度,但它不起作用。尽管有一个用于高度的 CSS 变量,但我找不到任何用于宽度的 CSS 变量($form-field-height)。
($form-field-height)
我也尝试在 fieldStyle 中设置宽度。
fieldStyle: { width: '100px' }
我可以改变高度。以下作品。
fieldStyle: { height: '60px' }
code4jhon 回答了它,我只想添加一些注释:您的组合框是否位于具有自动固定布局类型的父容器内:如 hbox、vbox、...?您无法更改宽度和高度,因为它由其父布局控制。
宽度确实有效,您可以使用此代码来观看它:
https://fiddle.sencha.com/#fiddle/1g3
此致。
你能!important在css中试试这个吗?
!important
fieldStyle: { width: 100px!important; }