The Eclipse JSP validator does not report any errors or warnings on any of the JSP fragments.
The following is the JSP frgment for the component that appears to be causing the issue: <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <jsp:useBean id="utils" class="com.ebpsource.virginmedia.email.jsp.Utils" scope="request" /> <p> <c:choose> <c:when test="${content.Title != null}"> <b>${content.Title}</b> <br> </c:when> </c:choose> <jsp:setProperty name="utils" property="richText" value="${content.TextBeforeLink}" /> ${utils.richText} <a style="text-decoration:none; color:#c00;" href="${content.Link}" target="_blank">${content.LinkText}</a> <jsp:setProperty name="utils" property="richText" value="${content.TextAfterLink}" /> ${utils.richText} </p> If I have 1 instance of the component then everything seems fine. If I have two instances then the Editor has no items in the rightside nav bar but rendering in the Preview panel works as expected. If I remove the leading <p> and closing </p> tags then everything seems to work but of course it nolonger renders the way I want. -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=ebe350bd-ab9c-4ca1-a4f2-0a61f4427bbd ---------------------------------------------------------------- For list details, see http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
