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
reatlimecoreatlimeco 

Why does the lookup box and icon display on fields that reference other objects under Sites???

<apex:inputField value="{!si.response.Institution__c}" rendered="{!si.question.Lookup__c == 'Institutions'}" /> <apex:inputField value="{!si.response.Activity__c}" rendered="{!si.question.Lookup__c == 'Activities'}" />

 

 

public class SurveyItem { public Question__c question {set;get;} public Response__c response {set;get;} public Invitation__c invite {set; get;} public List<SelectOption> answers {set; get;} public String answerType {set; get;} public SurveyItem (Question__c q,Invitation__c i,Response__c r, List<SelectOption> a, String atype ) { question = q; system.assert( q != null ); invite = i; system.assert( i != null ); response = r; system.assert( r != null ); system.debug(this); answers = a; answerType = atype; } }

 

Action 
Field Label
Data TypeControlling FieldModified By
Edit | Del Lookup(Activity)  David Mosher, 2/3/2010 8:21 PM
Edit | Del Lookup(Contact)  David Mosher, 1/31/2010 8:41 PM
Edit | Del Email  David Mosher, 2/3/2010 11:01 PM
Edit | Del Lookup(Account)  David Mosher, 2/3/2010 8:20 PM
Edit | Del Lookup(Invitation)  David Mosher, 1/31/2010 9:04 PM
Edit | Del Text(255)  David Mosher, 1/31/2010 8:42 PM
Edit | Del Phone  David Mosher, 2/3/2010 11:00 PM
Edit | Del Lookup(Question)  David Mosher, 1/31/2010 9:10 PM

 

Public Settings has read on Accounts (aka Institutions) and Activities (custom object not standard object).

These fields with lookups all have field level access made visible.

 

I have made the standard lookup page available via the Customer Portal page settings.

BulentBulent
can you clarify your question?