• KB1618
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies

I have a VisualForce Component that looks like this:

 

<ul>
    <apex:stylesheet value="{!URLFOR($Resource.custom_table_template)}"/>
        <table id="articles">
        <th id="number">Article Number</th>
        <th id="title">Article Name</th>
        <th id="label">Article Type</th>
        <th id="date">Last Published Date</th>
        <knowledge:articleList articleVar="article" sortBy="mostViewed" pageSize="5">
            <tr>
            <td>{!article.articlenumber}</td>
            <td><a target="_parent" href="{!URLFOR($Action.KnowledgeArticle.View, article.id)}">{!article.title}</a></td>
            <td>{!article.articletypelabel}</td>
            <td>{!article.lastpublisheddate}</td>
            </tr>
            
        </knowledge:articleList>
        </table>
    </ul>

How would I add a column that displays the "Most Viewed" of that article?