function readOnly(count){ }
Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Hi
Tell me what is inputField and what is the use of the field.
Thanks
Anuraj
an <apex:inputfield> will bind an SObject field to a HTML input field on your Visualforce page.
So if you wanted to be able to edit a contact's email on a VF page,
<apex:page standardController="Contact"> <apex:form> <apex:inputfield value={!contact.email}" /> </apex:form> </apex:page>
Please tell me the answer for it. Please Explain it to me. Its urgent.
an <apex:inputfield> will bind an SObject field to a HTML input field on your Visualforce page.
So if you wanted to be able to edit a contact's email on a VF page,
All Answers
Please tell me the answer for it. Please Explain it to me. Its urgent.
an <apex:inputfield> will bind an SObject field to a HTML input field on your Visualforce page.
So if you wanted to be able to edit a contact's email on a VF page,