Field.getRequestValue optional value trim()
-------------------------------------------
Key: CLK-627
URL: https://issues.apache.org/jira/browse/CLK-627
Project: Click
Issue Type: Improvement
Components: core
Affects Versions: 2.1.0
Reporter: Andrey Rybin
Field class contains method:
protected String getRequestValue() {
String value = getContext().getRequestParameter(getName());
if (value != null) {
return value.trim(); //<--- here
} else { return ""; }
}
Most of the time - trim is very nice feature (I like trim ;-).
But sometimes I need field "as is" with all its spaces.
Can You add option for _optional_ trim?
It should be enabled by default (current behavior), but if somebody need
spaces, he can disable trim (for specific field).
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.