Skip to content

Instantly share code, notes, and snippets.

@lfreeland
Last active March 25, 2018 18:51
Show Gist options
  • Select an option

  • Save lfreeland/41cbc5230f3fa68dd3f59d1bfa399083 to your computer and use it in GitHub Desktop.

Select an option

Save lfreeland/41cbc5230f3fa68dd3f59d1bfa399083 to your computer and use it in GitHub Desktop.
<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