Just make the changes yourself, then (you did read the bug report details, didn't
you?).
Grab MenuRenderer from the latest RI release.
Scroll to the end of renderOption method, and change the following code block if
(curItem.isEscape()) {
| String label = curItem.getLabel();
| if (label == null) {
| label = curItem.getValue().toString();
| }
| writer.writeText(label, component, "label");
| } else {
| writer.write(curItem.getLabel());
| }
| to this one: if (curItem.isEscape()) {
| String label = curItem.getLabel();
| if (label == null) {
| label = valueString;
| }
| writer.writeText(label, component, "label");
| } else {
| writer.write(curItem.getLabel());
| }
|
Include the changed file in your web project (mind the correct package name), this should
automatically place the compiled class into WEB-INF/classes.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4086133#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...