Details
-
New Feature
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Columns don't escape by default This is ognl I have to use to make a table column escape it's value:
table.addColumn(new Column("@org.apache.commons.lang.StringEscapeUtils@escapeHtml(title)","Title"));
I propose escaping should be the default and that users should use a call like column.setEscaping(false) to turn it off it not required. This might cause some minor backwards compatibility issues but escaping by default is much more desirable than the small inconvenience this might cause. I might see if I can come up with a patch in the next few days.