-
6 May 2009 4:08 AM #1
[FIXED] [2.0 M1] ComboBox, wrong popup position in webkit
[FIXED] [2.0 M1] ComboBox, wrong popup position in webkit
Hello,
As you can see on the following screenshot, i'm getting a problem with popup position of combobox. It work properly on IE7/8 and Firefox but it does'nt on Chrome and Safari (webkit).
On webkit, top position is good but not the left position.
Here is the layout :
Snippet of code :Code:+ viewport (BorderLayout) +-----+ TabPanel (center region) +-----------+TabItem (FitLayout) +---------------------+ContentPanel (FlowLayout) +----------------------------------------+ComboBox
Code:// this tab item is added to the tabpanel in the viewport public class ArborescencePagine extends TabItem { private final Application app; public ArborescencePagine(Application appp, String titre, String iconClass) { this.app = appp; // TabItem setup this.setText("Arborescence : "+titre); this.setIconStyle(iconClass); this.setClosable(true); this.setLayout(new FitLayout()); this.setBorders(false); // ContentPanel setup ContentPanel panel = new ContentPanel(); panel.setLayout(new FlowLayout(20)); panel.setBorders(false); panel.setHeaderVisible(false); panel.setFrame(true); // Combo annee ListStore<BaseModel> annees = new ListStore<BaseModel>(); annees.add(app.recupererListeAnnee()); ComboBox<BaseModel> comboAnnee = new ComboBox<BaseModel>(); comboAnnee.setDisplayField("annee"); comboAnnee.setStore(annees); panel.add(comboAnnee); this.add(panel); } }
-
6 May 2009 7:27 AM #2
-
6 May 2009 7:41 AM #3
This is a good news, any idea of a date for the next release of GXT with all that fixes ?
Thanks
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote