Are Firefox, IE good for Form widget?

Hi,

This is a popup window by Chrome. It shows with no problem. It’s also fine by Safari.

But this is no good by Firefox 7.0.1 and IE8.0.

I checked this problem in Mac OS X and Win7.

The below is the widgets I use.
Window
|-- VerticalLayout — Form

The form widget seems to have some problems.

Are there any ways to solve this?

Thanks.

HI,

I found a point that this problem happens.

The setSizeUndefined method does not seem to work right by Firefox or IE.

public class MyPopup extends Window {
VerticalLayout layout = (VerticalLayout) getContext();
layout.setMargin(true);
layout.setSpacing(true);
layout.setSizeUndefined();

}

If you change the method with setWidth(“500px”), it is fine.

But it’s NOT fine with me. I want to have the width fixed automatically.

thanks.

Hi,

This problem is probably solved.
I set setSizeUndefined methods in every layout widget.

I’m sorry to bother you.

Thanks.