> > I have a couple of questions relating to text that is in some > way output from display:column. > > - Things break the html seen by the browser if the text output > contains a literal "<" or ">". Other text output tags I have worked > with helps me escape characters that may cause problems. It does not > seem that this tag can help me do this. Is this by design, or just > an oversight?
This is a JSTL-style feature; it is not present. > > - I tried making a decorator that returned a JSP tag (a html:text > struts tag). This tag was not seen by Tomcat. Is this a feature, or > have I ignored something in the docs? Is there a better way of > building a tabular form? The text output of custom tags is not eval'd by the container. The text would need to nest inside a custom tag (the column tag) in order to be eval'd as JSP by the container. ------------------------------------------------------- This SF.net email is sponsored by: The SF.net Donation Program. Do you like what SourceForge.net is doing for the Open Source Community? Make a contribution, and help us add new features and functionality. Click here: http://sourceforge.net/donate/ _______________________________________________ displaytag-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/displaytag-user

