The border not show properly in IE8, top and bottom line is missing,
- GXT version: 1.2.3
- Host mode and web mode
- Browser and version: IE 8
- Operating System : window xp
Code:
public class Application implements EntryPoint
{
TextArea repositoryDescriptionTextArea = new TextArea();
public void onModuleLoad()
{
ContentPanel main = new ContentPanel();
FieldSet generalInfoFieldSet = new CommonFieldSet();
generalInfoFieldSet.setHeading("Foldr Info");
FormLayout layout = new FormLayout();
generalInfoFieldSet.setLayout(layout);
// repository description text area
this.repositoryDescriptionTextArea.setFieldLabel("Description");
FormData sd = new FormData("100%");
generalInfoFieldSet.add(repositoryDescriptionTextArea,sd);
main.add(generalInfoFieldSet);
RootPanel.get().add(main);
}
}