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
Volker_factory42Volker_factory42 

Inlineedit Save freeze with VisualForce Apex:include

I have a problem with Inlineedit-Save when using Apex:include

 

<apex:page standardController="Case" extensions="MYCLASS" showHeader="true" sidebar="true">
    <apex:include id="PAGEIDNAMEVA" pagename="MYVFPAGE/>
    <apex:detail inlineEdit="true"/>

</apex:page>

 my include page has only a textstring. This is only a sample, my complete Code has a lot of more functionality. I also can't use a component for this.

 

When editing on a case with this  inline edit and "save" all button stay grey and no refresh / reload for my case...

Best Answer chosen by Admin (Salesforce Developers) 
Volker_factory42Volker_factory42
<apex:page standardController="Case" extensions="MYCLASS" showHeader="true" sidebar="true">
    <apex:include id="PAGEIDNAMEVA" pagename="MYVFPAGE/>
<apex:form>
    <apex:detail inlineEdit="true"/>
</apex:form>

</apex:page>

 It's working fine now, when you use <apex:form> around <apex:detail>