Per Newgro created WICKET-5467:
----------------------------------
Summary: NumberTextField should support "any" as valid step
attribute value
Key: WICKET-5467
URL: https://issues.apache.org/jira/browse/WICKET-5467
Project: Wicket
Issue Type: Bug
Components: wicket
Affects Versions: 6.13.0
Environment: wicket 6.11.0
Reporter: Per Newgro
The NumberTextField removes the any value from step attribute added to markup.
E.g. <input type="number" step="any" wicket:id="myNumber" />
and add(new NumberTextField<Double>("myNumber", numModel);
leads to markup
<input type="number" id="myNumber" />
but should be
<input type="number" step="any" id="myNumber" />
I can see 2 possbile solutions
1. Don't remove the step attribute
2. Add a constant ANY to NumberTextField
public static final Number ANY = 0;
and let this be configurable to users (setStep(ANY))
--
This message was sent by Atlassian JIRA
(v6.1.5#6160)