extjs:复选框缩进样式,而不显示字段标签
关于复选框缩进样式的简短问题。一个新的复选框创建如下:
var newLegendItem = new Ext.form.Checkbox({
boxLabel: "test",
name: "test",
checked:true
});
在浏览器中,输出复选框没有向左缩进。我需要做什么才能应用缩进样式?
谢谢!
a short question about indent style of checkbox. a new checkbox is created as follows:
var newLegendItem = new Ext.form.Checkbox({
boxLabel: "test",
name: "test",
checked:true
});
in browser, the output checkbox has no indent from left. what I need to do to apply the style of indent?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想将其与其他表单字段内联对齐,请尝试:
If you want to align it inline with other form fields try:
如果您希望它与其他表单元素对齐,根据文档,这是正确的方法:
http://docs.sencha.com/ext-js/4-0/#!/api/Ext.form.Labelable-cfg-hideEmptyLabel
If you want it to align with other form elements, here's the correct way according to the documentation:
http://docs.sencha.com/ext-js/4-0/#!/api/Ext.form.Labelable-cfg-hideEmptyLabel
设置边距,根据口味调整大小:
Set a margin, adjusting size to taste: