You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Enter Icon Name | String | provide slds icon name |`standard:account`|
30
-
| Enter Title | String | provide table title | LWC Table |
31
-
| Enter Object API Name | String| provide object custom or standard API name| Account |
32
-
| Enter Columns JSON | String | { `fieldName`:api name,`label`:col label,`type`:text,number,date }. **Note** : for related field it should be concat with . i.e : Account.Name for contact | See below **Column JSON Example**
33
-
Enter Related field API Name| String | Enter related field api name | Example AccountId for contact when component is on account layout.
34
-
Enter WHERE clause | String | provide aditional filters | Example `LastName like '%s' AND Account.Name like '%t'`
35
-
| Show the number of record | Boolean | append the number of records in the title | checked(true) OR not checked(false) |
| Enter Icon Name | false | String | provide slds icon name |`standard:account`|
31
+
| Enter Title | true | String | provide table title | LWC Table |
32
+
| Enter Object API Name |true |String| provide object custom or standard API name| Account |
33
+
| Enter Columns JSON | true | String | { `fieldName`:api name,`label`:col label,`type`:text,number,date }. **Note** : for related field it should be concat with . i.e : Account.Name for contact | See below **Column JSON Example**
34
+
Enter Related field API Name | false | String | Enter related field api name | Example AccountId for contact when component is on account layout.
35
+
Enter WHERE clause | false | String | provide aditional filters | Example `LastName like '%s' AND Account.Name like '%t'`
36
+
| Show the number of record | false| Boolean | append the number of records in the title | checked(true) OR not checked(false) |
36
37
37
38
## Columns JSON Example
38
39
```yaml
@@ -58,6 +59,49 @@ Enter WHERE clause | String | provide aditional filters | Example `LastName like
58
59
"type": "text"
59
60
}]
60
61
```
62
+
## Buttons configuration (for developers, accessible in the component and from parent component)
63
+
64
+
### Call apex or javascript method
65
+
callApexFromButton must be true
66
+
67
+
### Fire event to parent component
68
+
- callApex must be false
69
+
- needSelectedRows can be true if you need to send selected rows to parent component
0 commit comments