Guest User

Untitled

a guest
May 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.98 KB | None | 0 0
  1.                     <ui:repeat value="#{post.comments}" var="comment" varStatus="status">
  2.                         <tr>
  3.                             <td>
  4.                                 <a name="#{status.index+1}"/>#{status.index+1}.
  5.                             </td>
  6.                             <td>
  7.                                 <a href="#{comment.authorUrl}" style="font-weight: bold;">#{comment.authorName}</a><br/>
  8.                                 <h:outputText style="border-bottom: 1px dotted #666666;" value="Post date goes here"/>
  9.                                 <a href="##{status.index+1}">#</a><br/>
  10.                                 <h:outputText value="#{comment.body}" style="display: block; margin: 10px 0px 10px 0px;" escape="true">
  11.                                     <f:event type="preRenderComponent" listener="#{postBean.format}"/>
  12.                                 </h:outputText>
  13.                             </td>
  14.                         </tr>
  15.                     </ui:repeat>
Add Comment
Please, Sign In to add comment