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
djaindjain 

List of lookup field is not Visible

Hi,
 
In my application there is Visual force page with controller FTP_Details__c which is a custom object,
there is a field in the cotroller Language having lookup relation with Language__c custom object.
 
While entering the data in the form,  list of language is not visible to the user but user can search the data (List is only visible to the owner).
Please guide me how to show the list of language.
 
Thanks in advance.
JimRaeJimRae
If I understand your issue correctly, the standard FTP_Details__c page has a relationship lookup to the Language__c object.
On your VF page, you want to display the Language__c values in a list form instead of the lookup.

For this, you would use a select list. If there are a limited number of values in the Language__c table, you could create the selectlist directly on the page, otherwise, I would recommend that you create a controller extension to populate the selectlist options by running a SOQL query against the Language__c object.