You need to sign in to do that
Don't have an account?
renu anamalla 9
I have Passed in CustomController <apex: inputfield value="{!obj.Name}"/> but not displayed Error coming
Sample code:
Custom Object:Obj__c:
<apex:page controller="obj__c">
<apex:form>
<apex:pageblock>
<apex:pageblocksection>
<apex:inputField value="{!obj.Name}"/> // replace here
<apex:inputField value="{!obj.Phone__c}"/>
</apex:pageblock>
</apex:pageblocksection>
</apex:form>
</apex:page>
Regards,
Renu....
Custom Object:Obj__c:
<apex:page controller="obj__c">
<apex:form>
<apex:pageblock>
<apex:pageblocksection>
<apex:inputField value="{!obj.Name}"/> // replace here
<apex:inputField value="{!obj.Phone__c}"/>
</apex:pageblock>
</apex:pageblocksection>
</apex:form>
</apex:page>
Regards,
Renu....
Please paste your VF page and Custom Controller here.
Explain about what kind of error message you got and also use the above panel (< >) to copy the code.
Regards,
Mahesh
If you use apex:inputField it check Field Level security.
-Praveen K Hari