-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.3.0
-
x86
-
windows_2000
Name: yyT116575 Date: 05/07/2001
C:\>java -version
java version "1.3.0_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0_01)
Java HotSpot(TM) Client VM (build 1.3.0_01, mixed mode)
In the example below, there should be two buttongroups for radiobuttons with
name=1.0 and name=2.0. In the source code for HTMLDocument,
it clearly only allocates one buttongroup per form.
import javax.swing.*;
public class Test extends JApplet {
public Test() {
JEditorPane editor = new JEditorPane();
editor.setContentType("text/html");
editor.setText("<html><body><form>"+ "<br>Question 1"+
"<br><input type=\"radio\" name=\"1.0\" value=\"0\">My first choice(correct)"+
"<br><input type=\"radio\" name=\"1.0\" value=\"1\">My second choice"+
"<br><input type=\"radio\" name=\"1.0\" value=\"2\">My third choice"+
"<br>Question 2"+
"<br><input type=\"radio\" name=\"2.0\" value=\"0\">My first choice(correct)"+
"<br><input type=\"radio\" name=\"2.0\" value=\"1\">My second choice"+
"<br><input type=\"radio\" name=\"2.0\" value=\"2\">My third choice</form></body></html>");
getContentPane().add(editor);
}
}
(Review ID: 123936)
======================================================================
- duplicates
-
JDK-4529702 radio buttons behave not right in the HTML
-
- Closed
-