Last active
March 25, 2018 18:51
-
-
Save lfreeland/41cbc5230f3fa68dd3f59d1bfa399083 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <aura:component implements="..."> | |
| <aura:attribute name="viewRecordOverride" type="Aura.Action" /> | |
| <table> | |
| ... | |
| <tr> | |
| <td> | |
| <a onclick="{! v.viewRecordOverride ? v.viewRecordOverride : c.viewRecord }>{! record.Name }</a> | |
| </td> | |
| </td> | |
| ... | |
| </table> | |
| </aura:component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment