On 4/6/06, Lindholm, Greg <[EMAIL PROTECTED]> wrote: > Is there a way to truncate outputText and specify the size > you want from a jsp page? > > Does anybody have a way or doing this with current tags?
You could create an EL expression, but those aren't supported well in JSF 1.1. Facelets would make it easy. > Is this something that could be done with a converter? String converters aren't allowed in JSF 1.1, but they are in 1.2. Otherwise a converter would be a good choice. > Is this something that could be added to <t:outputText> ? Probably if you provided a patch.

