Newer Version Available
lntg:selectSObject
To select an object, set the record ID on the recordId attribute. Optionally, specify a channel for this event so that your components can select if they want to listen to particular event messages.
1selectedObj: function(component, event) {
2 var selectedObjEvent = $A.get("e.lntg:selectSObject");
3 selectedObjEvent.setParams({
4 "recordId": "0061a000004x8e1",
5 "channel": "AccountsChannel"
6 });
7 selectedObj.fire();
8}| Attribute Name | Type | Description |
|---|---|---|
| recordId | String | Required. The record ID associated with the record to select. |
| channel | String | Specify this field if you want particular components to process some event messages while ignoring others. |