knowledge:articleCaseToolbar

UI component used when an article is opened from the case detail page. This component shows current case information and lets the user attach the article to the case.

Example 

An example of an ‘FAQ’ custom article-type template that uses this component

1<apex:page standardController="FAQ__kav" sidebar="false" >
2    <knowledge:articleCaseToolbar
3        rendered="{!$CurrentPage.parameters.caseId != null}"
4        caseId="{!$CurrentPage.parameters.caseId}"
5        articleId="{!$CurrentPage.parameters.id}" />
6    <h1>{!FAQ__kav.Title}</h1><br />
7 </apex:page>

Attributes 

Attribute NameAttribute TypeDescriptionRequired?API VersionAccess
articleIdStringId of the current article.Yes43.0
caseIdStringId of the current case.Yes43.0
idStringAn identifier that allows the component to be referenced by other components on the page. 14.0global
includeCSSBooleanSpecifies whether this component must include the CSS. Default is true. 43.0
renderedBooleanSpecifies whether the component is rendered on the page. If not specified, this value defaults to true. 14.0global