<div>Hi All,</div><div>I want to create a lists in JSPs using the OpenCms API,but the "new" button will not be shown on lists.</div><div>Who can help me with this issue? </div><div><br></div><div><br><hr></div><div><div><br></div><div><br></div><div><div><%@ page import="java.util.*,org.opencms.jsp.*,org.opencms.file.*,org.opencms.xml.content.*" %></div><div><%@ taglib prefix="cms" uri="http://www.opencms.org/taglib/cms"%></div><div><html xmlns="http://www.w3.org/1999/xhtml"></div><div><head></div><div><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></div><div><title>API</title></div><div><style>body{padding-top:100px;}</style></div><div><cms:editable/> </div><div></head></div><div><body></div><div><ul></div><div><%</div><div>CmsJspXmlContentBean thisPage = new CmsJspXmlContentBean(pageContext, request, response);</div><div>I_CmsXmlContentContainer contentContainer = thisPage.contentload("allInSubTreeDateReleasedDesc", "/en/news/new_%(number).html|ttarticle", true);</div><div>  while (contentContainer.hasMoreContent()) {</div><div>  out.write("<li>"+ thisPage.contentshow(contentContainer, "Title") + "</li>");</div><div>}</div><div>%></div><div></ul></div><div> </body></div><div></html></div></div></div><div><br></div><div><div></div></div>