I have a backing bean that is trying to populate a selectmany checkbox. But
I want the checkbox to have links next to them instead of just plain text so
I did this:
is.add(new SelectItem(i,"<a href=\"top\">" + i + "</a>"));
But when I run it through the server it shows up in IE/Firefox with this as
the source code
...<a href="top">2</a></label>
So jsf is eating it spitting out something up. How can I get jsf to show
the text as hyperlinks and not eat the <...>