Skip Menu |

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

Report information
The Basics
Id: 13261
Status: resolved
Priority: 0/
Queue: HTML-SuperForm

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

Bug Information
Severity: Critical
Broken in: 1.04
Fixed in: (no value)



Subject: text-type output broken
Hi, example: --- use HTML::SuperForm; my $form = new HTML::SuperForm; print $form->text( value => "myvalue", name => "myname" ) . "\n"; --- output: myvalue <input type="text" value="myvalue" name="myname" value=""/>
From: jallwine86 [...] yahoo.com
This isn't the intended use of text. You would use default rather than value. The value and values attributes are used in checkboxes, radio groups and selects. On Wed Jun 15 12:37:06 2005, guest wrote: Show quoted text
> Hi, > > example: > > --- > > use HTML::SuperForm; > my $form = new HTML::SuperForm; > print $form->text( value => "myvalue", name => "myname" ) . "\n"; > --- > > output: > > myvalue <input type="text" value="myvalue" name="myname" value=""/> > > > > > >