Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4529702

radio buttons behave not right in the HTML

XMLWordPrintable

    • hopper
    • generic, x86
    • generic, windows_2000
    • Verified

      Bug report:

      Compile and run the following short code snippet. A window will pop up
      (it probably needs to be resized) with four radio buttons. According
      to the HTML used to build the radio buttons, the left two should be
      mutually exclusive, and the right two should be mutually
      exclusive. Unfortunately, if you click on ANY of the four radio
      buttons, ALL the other three are cleared (instead of just the single
      radio button belonging to the same group as the clicked one). This
      problem appears to be present in both jdk1.3 and jdk1.4b2.

      ------------------------------ cut here ------------------------------
      import javax.swing.*;
      import javax.swing.text.*;

      public class test {
          public static void main(String[] s) {
              JTextPane jtp = new JTextPane();
              jtp.setContentType("text/html");
              jtp.setText("<html><body><form><input type=radio name=a><input type=radio name=a>" +
                          "<input type=radio name=b><input type=radio name=b></form></body></html>");
              jtp.setEditable(true);

              JFrame jf = new JFrame();
              jf.getContentPane().add(jtp);
              jf.pack();
              jf.show();

              try { Thread.sleep(100000); } catch (Exception e) { }
          }
      }

            idk Igor Kushnirskiy (Inactive)
            tyao Ting-Yun Ingrid Yao (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: