Skip Menu |

This queue is for tickets about the Rose-HTML-Objects CPAN distribution.

Report information
The Basics
Id: 30744
Status: resolved
Priority: 0/
Queue: Rose-HTML-Objects

People
Owner: Nobody in particular
Requestors: dkoch [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.550
Fixed in: (no value)

Attachments


Subject: Rose::HTML::Form missing parent form name in nested RadioGroup
I have a attached a test case. I have two forms, one nested inside of the other. In a radio group field of the nested form, the names of the radio inputs don't reflect the nesting level. In this html produced from my attached testcase, the "bar3" radio group was part of "subform", but is not reflected in the output of $field->html. The "bar1" and "bar2" elements do show the nesting. <label>Foo 1</label> <input name="foo1" size="15" type="text" value=""> <label>Foo 2</label> <input name="foo2" size="15" type="text" value=""> <label>Bar 1</label> <input name="subform.bar1" size="15" type="text" value=""> <label>Bar 2</label> <input name="subform.bar2" size="15" type="text" value=""> <label>Bar 3</label> <input name="bar3" type="radio" value="Yes"> <label>Yes</label><br> <input name="bar3" type="radio" value="No"> <label>No</label> Thanks! Dan Koch
Subject: nested_form_testcase.tar.gz
Download nested_form_testcase.tar.gz
application/gzip 699b

Message body not shown because it is not plain text.

From: siracusa [...] gmail.com
I believe this is fixed in SVN. Try it and let me know: svn co https://rose.svn.sourceforge.net/svnroot/rose/trunk/modules/Rose-HTML-Objects
On Wed Nov 14 22:08:23 2007, JSIRACUSA wrote: Show quoted text
> I believe this is fixed in SVN. Try it and let me know: > > svn co > https://rose.svn.sourceforge.net/svnroot/rose/trunk/modules/Rose-HTML- > Objects >
Perfect, that worked. Thanks for the quick response! Dan