Skip Menu |

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

Report information
The Basics
Id: 132631
Status: new
Priority: 0/
Queue: HTML-FormFu

People
Owner: Nobody in particular
Requestors: mminar7 [...] gmail.com
Cc:
AdminCc:

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



Subject: Wrong type to number assigned
From: mminar7 [...] gmail.com
This config settings: - type: Number name: variableA label: 'Variable A' attributes_xml: { min: "1", max: "90" } attributes: id: variableA size: 30 maxlength: 256 label_class: mandatory should produce html code: <div class="number"> <input id="variableA" name="variableA" value = "80" max="90" maxlength="256" min="1" size="30" type="number"></input> </div> but it produce: <div class="number"> <input id="variableA" name="variableA" value = "80" max="90" maxlength="256" min="1" size="30" type="text"></input> </div> It is not expected behavior. Best Regards Marian