列布局 - 如何设置文本字段宽度
Column layout - how to set textfield witdth
我有一个包含文本字段项的表单面板。 Here is a fiddle demonstrating my current screen
有没有办法让文本框的宽度小于整个列的宽度?基本上,我希望列保持原来的大小(2 列,每列 50%),但我不希望文本字段占用整个 space 列。
可以像我现在这样使用列布局来实现吗?
我认为你 Ext.layout.container.Column 的使用方式不对。
在您的示例中,每个文本字段本身作为列,总列宽为 1.5。
columnWidths must always add up to 1 (or 100%) when added together, otherwise your layout may not render as expected.
您必须使用任何容器组件作为列并向该容器添加文本字段。
检查此 simple example。
我有一个包含文本字段项的表单面板。 Here is a fiddle demonstrating my current screen
有没有办法让文本框的宽度小于整个列的宽度?基本上,我希望列保持原来的大小(2 列,每列 50%),但我不希望文本字段占用整个 space 列。
可以像我现在这样使用列布局来实现吗?
我认为你 Ext.layout.container.Column 的使用方式不对。
在您的示例中,每个文本字段本身作为列,总列宽为 1.5。
columnWidths must always add up to 1 (or 100%) when added together, otherwise your layout may not render as expected.
您必须使用任何容器组件作为列并向该容器添加文本字段。
检查此 simple example。