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
Rahul BoinepallyRahul Boinepally 

Inline Visualforce page for Ideas object

Hello,
I have created a simple visualforce page with standard controller = 'Idea'. I am able to add the VF page to page layout in a section, but when I view the page, I am not able to see the inline visualforce component. I am a system admin and I have access to VF page and there is only one page layout. I have tried creating a sample extension as well and able to add the VF page to the page layout, still the same issue. Please could you help on how to view an inline visual force page on Ideas standard layout? Many thanks.

The VF code is:

    <apex:page standardController="idea">
    <apex:form >
        <apex:pageBlock title="Idea Details">
                <apex:pageBlockSection title="Idea Details" columns="1">
                <apex:outputField> style="width:250px" value="{!idea.title}">
                </apex:outputField>
            </apex:pageBlockSection>
        </apex:pageBlock>
    </apex:form>
    </apex:page>
 
VineetKumarVineetKumar
Are you able to see this page directly?
As in try checking it something like this and let me know the outcome
https://<serviceInstance>.salesforce.com/apex/<pageName>