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
RAJ PADMANABHAN 8RAJ PADMANABHAN 8 

Article Type and Channel Display and Visualforce Page

I created a new Article type and created a visualforce page which I would like to use for the custom article type. What is the trick behind displaying the visualforce page that I created in the dropdown list for different channels?

Article Type and Visualforce page
William TranWilliam Tran
You likely want to display a modal window on the onclick or other events.

Here's instruction on how to display modal windows.

http://www.salesforcegeneral.com/salesforce-modal-dialog-box/

Thx
RAJ PADMANABHAN 8RAJ PADMANABHAN 8
Figured it out and it was easy.. Need to include the standard controller..

<apex:page standardController="Troubeshooting__kav"  docType="html-5.0" applyHtmlTag="false" applyBodyTag="false"
           showHeader="false" sidebar="false" standardStylesheets="false"
           title="Unused Title">
<html>
   
    <head>
        <title>HTML5 Container Page</title>
    </head>
   
    <body>
        <h1>An Almost Empty Page</h1>
 
        <p>This is a very simple page.</p>
    </body>
   
</html>
</apex:page>