• Leuwend Job Hapa
  • NEWBIE
  • 20 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
I have a custom component below which has many attributes:
<c:SampleComponent sortBy="Type" storeTo="page2:hidden" isTableFormat="true"/>
How will I know which of the setter methods of each attributes executes first? Thanks!
Assuming that we have a list of Account objects from the database:
List<Account> listOfAccounts = new List<Account>();

for (Account a : [SELECT Id, Name, Type FROM Account LIMIT 10]) {
    listOfAccounts.add(a);
}
I want to display it on a datatable that automatically adds the columns that I have queried (ID, Name, and Type).
I have a custom component below which has many attributes:
<c:SampleComponent sortBy="Type" storeTo="page2:hidden" isTableFormat="true"/>
How will I know which of the setter methods of each attributes executes first? Thanks!
I have a custom component below which has many attributes:
<c:SampleComponent sortBy="Type" storeTo="page2:hidden" isTableFormat="true"/>
How will I know which of the setter methods of each attributes executes first? Thanks!