表单字段在 FF 中完成布局之前显示

发布于 2024-10-13 10:23:11 字数 593 浏览 5 评论 0原文

我很抱歉我的英语不好,但我希望你能理解。

我的问题是什么......

我编写了一段代码来简单地显示包含文本字段、html编辑器、组合框等的表单。一切都很顺利,但在 Firefox 中,我的字段在表单布局完成之前出现。所以它看起来很奇怪,因为表单字段与其他组件重叠。

示例代码:

positionsPanel = new Ext.FormPanel({
 margins     : '2 2 2 0', 
 frame       : true,
 flex        : 3,
 labelWidth  : 220,
 buttonAlign : 'right',
 labelAlign  : 'top',
 autoScroll  : true,
 height      : oldFormPanelHeight, //this is ok, just a value
 autoShow    : true,
 defaults    : {
  enableKeyEvents : true,
  anchor          : '97%'
 },
 items       : [{...etc.

您知道如何解决这个问题吗?多谢...

I'm sorry for my bad english but I hope you will understand.

What's my problem....

I wrote a code to simple show the form which contains textfields, htmleditors, comboboxes, etc. Everything goes fine but in Firefox my fields appears before the form layout is done. so it looks quite weird because form fields overlaps other components.

sample code:

positionsPanel = new Ext.FormPanel({
 margins     : '2 2 2 0', 
 frame       : true,
 flex        : 3,
 labelWidth  : 220,
 buttonAlign : 'right',
 labelAlign  : 'top',
 autoScroll  : true,
 height      : oldFormPanelHeight, //this is ok, just a value
 autoShow    : true,
 defaults    : {
  enableKeyEvents : true,
  anchor          : '97%'
 },
 items       : [{...etc.

Have you any idea how to fix that? Thanks a lot...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

美煞众生 2024-10-20 10:23:11

remove flex: 3

注意:仅当此组件由已配置为使用 BoxLayout 的 Container 呈现时,才会使用此配置。

默认情况下(在您的情况下也是如此)FormPanel 使用“表单”布局

remove flex: 3

Note: this config is only used when this Component is rendered by a Container which has been configured to use a BoxLayout.

By default (in your case also) FormPanel use 'form' layout

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文