作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
文本字段在 ExtJs 5 中不起作用。这是我的定义:
{
fieldLabel: 'First Name',
name: 'firstName',
width : 200,
allowBlank: false
}
标签位于可编辑区域的顶部,并且可编辑区域比总宽度小得多。它在 Ext 4 中运行良好。
最佳答案
将标签放置在 Ext.form.field.Text 内您可以使用labelAlign组件属性,您可以使用 labelWidth 设置组件内标签的宽度属性(property)也来自 Ext.form.Labelable混合。
Ext.create('Ext.form.field.Text', {
fieldLabel: 'First Name',
padding: 10,
name: 'firstName',
allowBlank: false,
width : 400, //width of component
labelAlign: 'right', //position of label
labelWidth: 200, // width of label
renderTo: Ext.getBody()
});
关于extjs - ExtJs5 中文本字段的可编辑区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27263704/
我是一名优秀的程序员,十分优秀!