Skip to main content

Render and Preview the Contact List

Follow Along with Trail Together

Want to follow along with an expert as you work through this step? Take a look at this video, part of the Trail Together series.

(This clip starts at the 10:45 minute mark, in case you want to rewind and watch the beginning of the step again.)

Render the Contact List

  1. Add the following code on a new line after the comment <!-- Contact list goes here -->:
    <lightning:datatable data="{! v.Contacts }" columns="{! v.Columns }" keyField="Id" hideCheckboxColumn="true"/>
    A lightning:datatable is another Base Lightning Component that will display the list of contacts.
  2. Select File | Save.
  3. Click the MyContactListController.js tab.
  4. Update the myAction function with the following code on a new line above the var action line:
    component.set("v.Columns", [
        {label:"First Name", fieldName:"FirstName", type:"text"},
        {label:"Last Name", fieldName:"LastName", type:"text"},
        {label:"Phone", fieldName:"Phone", type:"phone"}
    ]);
    The datatable component uses the values stored in the Columns attribute to determine the number of columns to display.
  5. Select File | Save.
  6. Refresh the Account page in your org.

Summary

Congratulations! You have created your first Lightning component. Now any admin can add your component to their org to display contacts for an account. Other developers can also use your component instead of writing their own code.

Salesforce 도움말에서 Trailhead 피드백을 공유하세요.

Trailhead에 관한 여러분의 의견에 귀 기울이겠습니다. 이제 Salesforce 도움말 사이트에서 언제든지 새로운 피드백 양식을 작성할 수 있습니다.

자세히 알아보기 의견 공유하기