我对“我的朋友” IE8 和 GWT 感到疯狂。我已经在论坛中寻找解决方案,但我没有找到我正在寻找的确切内容。问题是我已经为两个radioButtons(radioPannel,radioRattachement)声明了一个radioPanel:
// Ajout des listeners et des styles sur les boutons
radioRole.setStyleName(Constants.RADIO_LISTE_PROJET);
// radioRole.setst
radioRole.addListener(Events.OnClick, new ClickFiltreListener(this));
radioRole.setValue(Boolean.FALSE);
radioRole.setHideMode(HideMode.VISIBILITY);
radioRattachement.setStyleName(Constants.RADIO_LISTE_PROJET);
radioRattachement.addListener(Events.OnClick, new ClickFiltreListener(
this));
radioRattachement.setValue(Boolean.TRUE);
radioRattachement.setHideMode(HideMode.VISIBILITY);
// Creation du groupe de radio et ajout des 2 boutons dans ce groupe
radioGroup.add(radioRattachement);
radioGroup.add(radioRole);
radioGroup.setOrientation(Orientation.VERTICAL);
radioGroup.setWidth(80);
radioGroup.setHeight(80);
radioGroup.setHideLabel(Boolean.TRUE);
// Panel contenat le groupe de radio
final ContentPanel radioGroupPanel = new ContentPanel();
final FormLayout boutonPosteLayout = new FormLayout();
// boutonPosteLayout.setPadding(Constants.INT_PADDING_0);
// boutonPosteLayout.setLabelWidth(Constants.INT_PIXELS_40);
radioGroupPanel.setLayout(boutonPosteLayout);
radioGroupPanel.add(radioGroup);
它在 Firefox 中作为一种魅力,但在 Internet Explorer 中,radioButtons 不显示。有什么问题要知道吗?. 提前致谢 。