You need to sign in to do that
Don't have an account?
sp13
input fields not displaying
i have a visual for page that include this:
i added/enabled this visualforce page to my site domain: http://elavil-developer-edition.ap1.force.com/sitepage/OnlinePayment
it should display like this:
instead, it displays like this:
all of these fields are visible when i open/view it as an administrator. why is it that when i go to my site domain(http://elavil-developer-edition.ap1.force.com/sitepage/OnlinePayment) the fields doesn't show? can anyone help me please?
<apex:inputField value="{!reserve.Mode_of_Payment__c}" required="true">
<apex:actionSupport event="onchange" reRender="page"/>
</apex:inputField>
<apex:inputField value="{!reserve.Credit_Card_Number__c}" rendered="{!reserve.Mode_of_Payment__c='Credit Card'}"/>
<apex:inputField value="{!reserve.Your_Smart_Money_Number__c}" rendered="{!reserve.Mode_of_Payment__c='Smart Money'}" label="Smart Money Transaction #"/>
<apex:inputField value="{!reserve.Amount_Paid__c}" required="true"/>
<apex:commandButton value="Pay" action="{!pay}" style="padding: 5px 25px;"/>
<apex:actionSupport event="onchange" reRender="page"/>
</apex:inputField>
<apex:inputField value="{!reserve.Credit_Card_Number__c}" rendered="{!reserve.Mode_of_Payment__c='Credit Card'}"/>
<apex:inputField value="{!reserve.Your_Smart_Money_Number__c}" rendered="{!reserve.Mode_of_Payment__c='Smart Money'}" label="Smart Money Transaction #"/>
<apex:inputField value="{!reserve.Amount_Paid__c}" required="true"/>
<apex:commandButton value="Pay" action="{!pay}" style="padding: 5px 25px;"/>
i added/enabled this visualforce page to my site domain: http://elavil-developer-edition.ap1.force.com/sitepage/OnlinePayment
it should display like this:
all of these fields are visible when i open/view it as an administrator. why is it that when i go to my site domain(http://elavil-developer-edition.ap1.force.com/sitepage/OnlinePayment) the fields doesn't show? can anyone help me please?
Navigate to your site setup page and then click the public access settings button - this is the profile for the guest user profile and you can set up appropriate access there.
All Answers
Navigate to your site setup page and then click the public access settings button - this is the profile for the guest user profile and you can set up appropriate access there.