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
<apex:page standardController="use your controller" > <apex:form> <apex:inputField value="{!First Name}" /> <apex:inputField value="{!lastName}" /> <apex:inputField value="{!Email}" /> <apex:inputField value="{!phone}" /> <apex:selectOptions value="{!select state}"/> <apex:commandButton value="send" action="{!send}" /> </apex:form> </apex:page>
<apex:page> <style> .bPageBlock { background-color: black; } </style> <apex:form> <apex:inputField value="{!First Name}" /> <apex:inputField value="{!lastName}" /> <apex:inputField value="{!Email}" /> <apex:inputField value="{!phone}" /> <apex:selectOptions value="{!select state}"/> <apex:commandButton value="send" action="{!send}" /> </apex:form> </apex:page>
<apex:page standardStylesheets="true" sidebar="false" standardController="your controller"> <style> table { background-color:#333333; } tablerow { background-color:grey; } span { color:red; } th { color:White; font-size:medium; } </style> <apex:form > <apex:pageBlock> <table> <th>Contact Sales Rep</th> <tr><td><span>*</span><apex:inputField value="{!your controller.firstname}" required="yes" style="background-color:#808080" html-placeholder="First Name" /></td></tr> <tr><td><span>*</span><apex:inputField value="{!your controller.lastname}" required="yes" html-placeholder="Last Name" style="background-color:#808080"/></td></tr> <tr><td><span>*</span><apex:inputField value="{!your controller.Phone}" required="yes" html-placeholder="Phone" style="background-color:#808080"/></td></tr> <tr><td><span>*</span><apex:inputField value="{!your controller.email}" required="yes" html-placeholder="Email" style="background-color:#808080"/></td></tr> <tr><td><span>*</span><apex:inputField value="{!your controller.email}" required="yes" html-placeholder="Email" style="background-color:#808080"/></td></tr> <tr><td><span>*</span><apex:inputField value="{!your controller.Company}" required="yes" html-placeholder="Email" style="background-color:#808080"/></td></tr> <tr><td><apex:commandButton value="Send" action="{!Send}" /></td></tr> </table> </apex:pageBlock> </apex:form> </apex:page>
Thanks
I hope it works