-
Bug
-
Resolution: Fixed
-
P4
-
1.3.0, 1.4.0
-
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) { }
}
}
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) { }
}
}
- duplicates
-
JDK-4455593 RadioButtons in Jeditorpane with different names in same buttongroup
-
- Closed
-