• jessie grace
  • NEWBIE
  • 24 Points
  • Member since 2017

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 8
    Replies
Description:
How to call visualforce component in javascript?
I created wrapper class to relate 15 child records of the same object(ex:Territory__c has parent_Territory__c(lookup field of Territory__c))
There is a limitation in salesforce that we cant query more than 5 relationships.
If anyone has any idea to query 15 related child records please help me....!!

Thanks,
Jessy.
I created wrapper class to relate 15 child records of the same object(ex:Territory__c has parent_Territory__c(lookup field of Territory__c))
There is a limitation in salesforce that we cant query more than 5 relationships.
If anyone has any idea to query 15 related child records please help me....!!

Thanks,
Jessy.
Hi,
I want to add a new row in a table which is generated dynamically and newly created row automatically mapped with the table.  

 For Example: 
I have one custom object "Sample" and table look like: -
User-added image

For adding row in to the table I have written custom controller but that doesn’t work for, the issue is the table is generated dynamically, I can't manage the visualforce page and controller's tables values. 
ex:
<apex:pageBlockTable value="{!selected}" var="a" id="table">
</apex:pageBlockTable>

How can I pass the Visualforce table value into apex controller?
Description:
How to call visualforce component in javascript?