• Mad Developer
  • NEWBIE
  • 0 Points
  • Member since 2013

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

Hi

 

I have 2 fields named firstname and lastname and I need to get them as a single name and to the name field.

 

Can anyone suggest a way for this?

 

 

Hi i have created a VF page using css, as header,body,footer,
But in body the clour is not present in client side,Am not able to fin it is a browser problem or my with my code...

Hi

 

I have 2 fields named firstname and lastname and I need to get them as a single name and to the name field.

 

Can anyone suggest a way for this?

 

 

Hi all,

 

I have a wrapper class which contains a list of sobjects, i want to have th sorting on the fields of these objects in the wrapper list:

The apex code is as follows:

Class jobsWrapper
{
public JobSuite__Job__c job {get;set;}
public JobSuite__Job_Task__c jobTasks{get;set;}
public JobsWrapper(JobSuite__Job__c objjobs, JobSuite__Job_Task__c objjobTasks)
{
// if(jobTasks== NULL){jobTasks = new List<Job_Task__c>();}
job = objjobs;
jobTasks = objjobTasks;
}

public JobsWrapper()
{
if(jobTasks== NULL){jobTasks = new JobSuite__Job_Task__c();}
if(job == NULL){job = new JobSuite__Job__c();}
 
}
}

 

i want to allow sorting the wrapper list by the fields in the job - like client, jobname, jobnumber etc and fields from the task object as taskname, reviseddue dateetc.

 

How can i do this?

Please help, thanks in advance.