示例#1
0
  // added by chie 2009 func form checkbox
  private void Func_checkbox() {
    Func_FormCommon("checkbox");

    if (!this.getAtt("checked").equals("")) {
      HTMLEnv.setChecked(this.getAtt("checked"));
    }

    return;
  }
示例#2
0
  // added by chie 2009 func form radio
  private void Func_radio() {

    if (!this.getAtt("checked").equals("")) {
      HTMLEnv.setChecked(this.getAtt("checked"));
    }

    Func_FormCommon("radio");

    return;
  }