From: Jordan B. <jb...@af...> - 2003-06-24 21:13:51
|
I been trying to get my web page work with the HtmlForm object, but every time it fails to retrieve my radio or check box inputs. I ran a debug into the source and I found myself in the isSubmittable(element) methods where I noticed it looks for a "checked" element on these input types, and only if this is present is the element is considered submittable. if( type.equals( "radio" ) || type.equals( "checkbox" ) ) { final Attr checked =3D (Attr)element.getAttributeNode("checked"); <--- return checked !=3D null; } Is there a reason why "checked" attribute must be found in order for these elements to be considered submittable? Thanks, Jordan |