-
Notifications
You must be signed in to change notification settings - Fork 97
soqlDatatable: Limitations
James Hou edited this page Jan 31, 2021
·
3 revisions
-
Nested / Inner / Child SOQL is not supported.
- e.g.
SELECT Id, Name, (SELECT Id, Name FROM Contacts) FROM Account. - This is not feasible using
lightning-datatableand would instead require something likelightning-tree-grid.
- e.g.
-
Configurable Flow / LWC actions is only supported on App / Record Page. It does not work in Screen Flows.
-
When configuring flow actions, you must include some default input variables.
- See
soqlDatatableconfiguration.
- See
-
Inline Edit has a few limitations:
- Keyboard navigation is not supported yet.
- Geolocation fields must be queried with the
__Longitude__sand__Latitude__s(capital L). - Time data type is not yet supported for view or edit.
- RecordType restricted picklist values are supported with a limitation:
When using mass edit on a Picklist field for a Standard Object enabled with Record Types, it's possible to mass apply a value which does not belong on that table. This seems to be because Standard Object picklist fields do not have the
Restrict picklist to the values defined in the value setoption.
-
Aggregate SOQL has a few limitations:
- Using max/min with any Date or DateTime field does not currently display properly.
-
For column sorting, multi-sort and column filtering actions are not supported.