Gwt-Radio Button的问题

时间:2013-04-15 05:25:56

标签: gwt radio-button

我为两个GWT-RadioButtons使用相同的组名。当我点击其中一个时,另一个未经检查,这很好。但是以编程方式(当我调试时)另一个单选按钮值仍然保持为“true”。根据我的要求,它应该是假的。我认为这是GWT-RadioButton Group概念的问题。

这是GWT的问题 - RadioButton?

以下是代码段

indiaRadioBtn.setValue(true);     
  indiaRadioBtn.addClickHandler(new IndianRadioClickHandler());     
  othersRadioBtn.addClickHandler(new InternationalRadioClickHandler());     

    if (contactInfo != null) {     
    if (contactInfo.getPostalAddress().getCountry() != null) {    
      othersRadioBtn.setValue(true);      
    }     

    if (indiaRadioBtn.getValue()) {    
      index = -1;    
      for (StateOrProvince stateOrProvince : StateOrProvince.values()) {    
        index++;
        if ((contactInfo.getPostalAddress().getState() != null)    
            && contactInfo.getPostalAddress().getState().equals(stateOrProvince.name())) {   
          stateListBox.setSelectedIndex(index);     
        }    
      }    
    } else {    
          //some code  } 

类IndianRadioClickHandler实现ClickHandler {

  @Override
  public void onClick(ClickEvent event) {
    //newOrUpdateContactInfoFormPanel.clear();
    ContactInfo contactInfo = getSelectedContactInfo();

    /**
     * Used same panel and elements for both addresses, so clearing address for Indian.
     */
    if (contactInfo != null) {
      if (contactInfo.getPostalAddress().getCountry() != null
          || title.equals("Create New Address")) {
        contactInfo = null;
      }
    }
    newOrUpdateContactInfoFormPanel.add(getCompleteFormPanel(contactInfo));
  }
}


if contactInfo != null then it is executing that loop, i am setting  othersRadioBtn.setValue(true);

所以我的其他单选按钮应该根据组概念设置为false ..但它没有完成它的工作。

0 个答案:

没有答案