IE8 GWT单选按钮未显示

时间:2012-09-10 09:58:50

标签: java gwt internet-explorer-8 radio-button

我对“我的朋友”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。有什么问题需要知道吗? 。提前致谢 。

0 个答案:

没有答案