How can you select specific dynamic elements to be displayed from the abstract display? For example if I have the following in my template
<td>Sample Text</td>
<td>$sample-text.data</td>
<td>Display Text</td>
<td>$display-text.data</td>
How can I make the abstract display only show the display-text and not both?
Sorry let me try and clear this up. The asset publisher has web content (used to be journal). The web content has different ways to display the articles. They have table, title list, abstract, and full content. If I use the abstract display and the user has imputed an abstract than the title and abstract are shown. If no abstract is imputed than the title and summary is shown. The summary consist of the dynamic elements. My question really boils down to how can I have the abstract view only show select elements from the summary. Summary is obtained by
String summary = StringUtil.shorten(assetRenderer.getSummary(locale), abstractLength);
which is located in the abstracts.jsp.