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
TNiemanTNieman 

TextArea field not populating with content of the Field

I have a VF page that pulls 4 fields from a case field set, 3 of them properly pull the existing value, the 4th (textarea) doesn't.  It will save what you put in it, but it doesn't display the existing value

Here is the VF page
<apex:page standardController="Case" extensions="ResolvedCase" showHeader="true" sidebar="false" tabStyle="Case">
    <apex:sectionHeader title="Case" subtitle="Resolve Case" />
    
    <apex:form id="caseResovleCaseForm" >
        <apex:pageBlock >
            <apex:pageBlockSection title="Case Resolution"  collapsible="false" columns="1">
                <apex:repeat value="{!$ObjectType.Case.FieldSets.ResolveCase}" var="r">
                    <apex:inputField value="{!Case[r.fieldPath]}" required="{!OR(r.required, r.dbrequired)}" rendered="{!NOT(CONTAINS(r.fieldPath,'Description'))}"/>
                    <apex:inputTextarea value="{!Case[r.fieldPath]}" required="{!OR(r.required, r.dbrequired)}" rendered="{!(CONTAINS(r.fieldPath,'Description'))}" cols="100" rows="5" />
                </apex:repeat>
            </apex:pageBlockSection>
            <apex:pageBlockButtons location="bottom">
                <apex:commandButton value="Resolve Case" action="{!save}"/> 
                <apex:commandButton value="Cancel" action="{!cancel}"/> 
            </apex:pageBlockButtons>
        </apex:pageBlock>
     </apex:form>
</apex:page>

Here is the field set
Field set used on page

Here are the preexisting values (also Status = Resolved)
User-added image

I also have an Action to do the same thing on the  Feed, and it works fine there.

Here is the action page (Resolution Description is populated)
User-added image 

Here is the VF page (Resolution Description not populated)
User-added image

Any help would be greatly appreciated.

Tom