function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Moritz MuellerMoritz Mueller 

href to subtab from a custom component in the service console

Hi,

So I've made this custom list view component to show a couple articles, since the inbuilt component doesn't allow for a preset sorting. However, when clicking one of these line items, they do open in a new subtab but the page will reload, which seems unnecessary compared to the unbuilt list view items which open seamlessly in a subtab.

How would I go about having links opened without forcing the entire browser to reload the console;
 
<aura:iteration items="{!v.Articles}" var="articles">
            <tr scope="row">
                <td class="slds-cell-buffer_left slds-cell-wrap"><a href="{!'/lightning/r/Knowledge__kav/'+articles.Id+'/view'}">{!articles.Title}</a></td>
                <td class="slds-cell-buffer_left slds-cell-wrap"><ui:outputDate value="{!articles.LastModifiedDate}"/></td>
            </tr>
          </aura:iteration>

Thanks!