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
meyerdmeyerd 

Show the translated field label in the column header of a pageBlockTable for an Input field

I have a field which shows the translated labels based on the users language.

In a Visual Force page I see how to show the translated label for an output field.
How would I show the translated label as the column header for an input field which has an onchange event?

    <apex:pageBlockTable value="{!OpptyList}" var="oppty" cellpadding="4">
        <apex:column headerValue="Stage"> 
            <apex:inputField value="{!oppty.stageName}" id="OPPTY_STAGE" onchange="changeFcstStatus(event);"/> 
        </apex:column>

 



Message Edited by meyerd on 10-17-2008 07:17 AM
jwetzlerjwetzler
$ObjectType should do that for you.
meyerdmeyerd

Thank you!

jwetzler superstar.