• venkatFESDEV
  • NEWBIE
  • 0 Points
  • Member since 2010

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

Hi,

  I have a google visualization's data table(this is a visual force component) which consist of list of record,my task is if user select a row from the table ,I have to fetch the selected row values from visual force component to my visual force page's controller class (not a component controller).

 

Simply I want to make a communication from vf's custom component to my vf page's controller apex class.

 

Is it possible to make a such communication while selecting the row values?

 

please guide us.

 

<apex:page controller="ParentController"> <apex:form> <apec:pageblock id="pageId"> <c:googleTable jsondata="{!equipment}" barwidth="620" height="14em" Id="component"> <!-- I tried this action supprt to refresh the page,but it doesn't work <apex:actionSupport event="onclick" rerender="pageId" /> --> </c:googleTable> </apec:pageblock> </apex:form> <!-- I need communication from googleTable to ParentController class --> </apex:page>

 

 

 

Thanks in advance

 

Venki