You need to sign in to do that
Don't have an account?

how can i add custom object fields to visual force page
Hi all,
I created an visualforce page for bulk send sms.

I want to insert custom object field names in the message log how can i achieve it any suggestions
My code:
Thanks inadvance......
I created an visualforce page for bulk send sms.
I want to insert custom object field names in the message log how can i achieve it any suggestions
My code:
<apex:page standardController="Campaign" extensions="Campaignbulk" showHeader="true" sidebar="true"> <apex:form > <apex:pageBlock id="ThePage"> <apex:pageBlockSection columns="1" rendered="{!firstPanel}"> <apex:outputText label="Campaign Name :"> {!campaign.name} </apex:outputText> <apex:outputText label="Count :"> {!cnt} </apex:outputText> <apex:inputTextarea value="{!smsText }" label="Text :" html-maxLength="160" rows="5" cols="40" required="true" style="resize:none;"/> <apex:commandButton value="send" action="{!sendbulk}"/> </apex:pageBlockSection> <apex:pageBlockSection rendered="{!secondPanel}" > <h1> "Total {!cnt} Message in queue". </h1> </apex:pageBlockSection> </apex:pageBlock> </apex:form> </apex:page>
Thanks inadvance......
Let me know if this is helpful or not.