• sandeep87
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 3
    Replies
I have created a VF page which displays all the records(in a page block table) related to a custom object(Candidate).Above this table,I have created all the fields which are included as columns in the table. However,I need to create filters on the columns of this table to dynamically display the records based on the values chosen in the fields.(i,e) Suppose I have a pick-list called "Branch" which has values (CSE,IT,ECE,EEE). When ever I choose the value in the pick list on the VF page,It should display the table of records filetered by the value choosen in the pick list.. Can anyone help me out on how to implement this functionality?? Thanks!!!! Regards, Anusha

Hi Guys,

Can someone help me out here!


This is my situation:

I have two custom objects Job_ATS__c and Shortlists__c.

Job_ATS__c is the Parent and Shortlists__c is the Child. The relationship is one to many.


That means one job can have many shortlists and each shortlist has a Status__c. Status are 'Interested' or 'Not Interested'

 

So what I want is a query that will return Job Name and count for Interested and Not Interested shortlists.

 

E.g...

 

Job_ATS__c                      Shortlists__c                                                                           Desired Result

______________         __________________________________                       ______________________________
Job Name       id             Shortlist Name       id     job_id   Status                                   Job Name   Interested     Not Interested
______________         __________________________________                       _______________________________
Job1                 1               Shortlist1                1        1          Interested                             Job1                1                        1  
Job2                 2               Shortlist2                2        1          Not Interested                      Job2                1                        0

                                           Shortlist3                3         2          interested

 

I need to Display the desired result on Vf page.