• Bhm
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 8
    Questions
  • 1
    Replies

Hi,

i need a help from you, for creating Opportunity edit page with functionality means Save, save&new and cancel buttons.

so any one can please help me.

 

Thanks.............

  • June 20, 2013
  • Like
  • 0

Hi,

how to get the api name of particular field, and what are the methods to get the apiname, and also i need to display csv file  columes with apiname fields.

 

Thanks.

  • June 05, 2013
  • Like
  • 0

Hello,

 

         My requirement is display records in visual force page side by side.

 

for example :

 

                      record1                     record2

                        link                              link

 

                      record3                     record4

                        link                              link

 

                       record5                     record6

                        link                              link

 

 

Here link is a command link or output link. How to display records in visual force page?

 

Any one help me?

 

 

 

  • May 27, 2013
  • Like
  • 0

Hi,

Any one can plz help me,

How to display dynamically a month name in visualpage on barcharts and also records count . 

 

 

Thanks.........

  • May 05, 2013
  • Like
  • 0

Hi,

any one can plz help me,why i am gettind System.NullPointerException: Argument 2 cannot be null

 

 

public class countryExtension
{
public Contact c;

public countryExtension(ApexPages.StandardController stdController)
{
this.c = (Contact)stdController.getRecord();
}
public List<selectOption> getaccts()
{
List<selectOption> options = new List<selectOption>();
options.add(new selectOption('', ''));
for (Contact c : [SELECT id, Level__c FROM Contact Limit 1])
{
System.debug(c);
options.add(new selectOption(c.id, c.Level__c));
}
return options;
}
}

..............

<apex:page standardController="Contact" extensions="countryExtension" standardStylesheets="true">
<apex:form >
<apex:pageBlock title="Contact Edit" mode="edit">

<apex:pageBlockSection title="General Information" columns="1">
<apex:inputField value="{!Contact.FirstName}"></apex:inputField>
<apex:inputField value="{!Contact.LastName}"></apex:inputField>
<apex:inputField value="{!Contact.Department}"></apex:inputField>
<apex:inputField value="{!Contact.Phone}"></apex:inputField>
<apex:inputField value="{!Contact.Email}"></apex:inputField>
</apex:pageBlockSection>
<apex:pageBlockSection columns="1" showHeader="false">
<apex:pageBlockSectionItem >
<apex:outputLabel value="Country Name" for="accts"></apex:outputLabel>
<apex:selectList id="accts" value="{!Contact.Level__c}" size="1" title="Contact">
<apex:selectOptions value="{!accts}"></apex:selectOptions>
</apex:selectList>
</apex:pageBlockSectionItem>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>

  • May 02, 2013
  • Like
  • 0

hi,

i need to display firstname and lastname of the contact object in vf page by using searching functionality 

so, plz help me.

  • April 30, 2013
  • Like
  • 0

Hi

plz, any one can make sure that how can i search and display a single record as per name of the account object.and also display the records as per alphabets.

 

 

Thanks..

  • April 29, 2013
  • Like
  • 0

Hi All,

 

           My requirement is insert contacts  when a checked records

a custom chechbox how to write a trigger?

 

 

Thanks in advance.

  • March 21, 2013
  • Like
  • 0

Hi,

i need a help from you, for creating Opportunity edit page with functionality means Save, save&new and cancel buttons.

so any one can please help me.

 

Thanks.............

  • June 20, 2013
  • Like
  • 0