Form fields are shown before the layout is done in FF
I'm sorry for my bad english but I hope you will understand.
开发者_C百科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...
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
精彩评论