You need to sign in to do that
Don't have an account?
Issue : populate the system fields in visualforce page
Hi,
I need help on the following requirement as follows,
I am having a owner field in my visualforce page which will display the owner where i am having a link called as [Change] which will prompt to change the user
eg :
Owner[Change]
now my req is i am having another picklist field in my VF Page called as "Account maintainence status "
i want that "Owner" field to be read only for all , and the [Change] link should be displayed only on changing my "Account maintainence status " in my VF Page
MY VF CODE :
<apex:outputField value="{!Account_Maintenance__c.OwnerId}">
<a href="/{!id}/a?retURL=/{!id}">[Change]</a>
</apex:outputField>
Help me how to acheive my requirement
Thanks in Advance
<a href="/{!id}/a?retURL=/{!id}" style="display:{!IF(account.status__c='field_value',' ','none')}">[Change]</a>
All Answers
<a href="/{!id}/a?retURL=/{!id}" style="display:{!IF(account.status__c='field_value',' ','none')}">[Change]</a>