Skip to content

Configuration

James Hou edited this page Feb 13, 2021 · 7 revisions

Configuring Actions for SOQL Datatable

See soqlDatatable configuration.

Granting access to SOQL Datatable features

Assign your users the following Apex Classes:

  • DataTableService (Required)
  • LookupAuraService (Optional, for searching lookups during inline edit)

Opening Modals / Dialogs using DialogService

Place MessageServiceHandler somewhere on each App / Record Page you want to open a Modal / Dialog. This also applies for any custom flow / lwc actions created by soqlDatatable.

Alternatively, use the Utility bar to house a icon-less text-less, "hidden" component. MessageServiceHandler must be connected to the DOM since it implements Lightning Message Service for event communication, so it can't be used as a background component.

Note: All soqlDatatable custom flow / lwc actions are opened using DialogService.

Closing Modals / Dialogs launched using DialogService

Use messageService or eventPublisher to send a closedialog event.

Clone this wiki locally