• Indranil Deria 7
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 5
    Replies
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?
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?