extjs:复选框缩进样式,而不显示字段标签

发布于 2024-11-04 19:58:19 字数 221 浏览 2 评论 0原文

关于复选框缩进样式的简短问题。一个新的复选框创建如下:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

海螺姑娘 2024-11-11 19:58:19

如果您想将其与其他表单字段内联对齐,请尝试:

hideLabel: false,
fieldLabel: ' '

If you want to align it inline with other form fields try:

hideLabel: false,
fieldLabel: ' '
情泪▽动烟 2024-11-11 19:58:19

如果您希望它与其他表单元素对齐,根据文档,这是正确的方法:

hideEmptyLabel: false

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:

hideEmptyLabel: false

http://docs.sencha.com/ext-js/4-0/#!/api/Ext.form.Labelable-cfg-hideEmptyLabel

甜味超标? 2024-11-11 19:58:19

设置边距,根据口味调整大小:

var newLegendItem = new Ext.form.Checkbox({
    style: 'margin-left: 30px',
    boxLabel: 'test',
    name: 'test',
    checked: true
});

Set a margin, adjusting size to taste:

var newLegendItem = new Ext.form.Checkbox({
    style: 'margin-left: 30px',
    boxLabel: 'test',
    name: 'test',
    checked: true
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文