core_reportbuilder/local/events

Report builder events

Source:
License:
  • http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later

(constant) module:core_reportbuilder/local/events

Source:
Properties:
Name Type Description
tableReload String

See event:tableReload

Events for the Report builder subsystem

Events

tableReload

Source:
Properties:
Name Type Description
detail object
Properties
Name Type Description
preservePagination Boolean

Whether current pagination should be preserved (default false)

preserveTriggerElement String

Element selector that should be focused after table reload (default null)

Trigger table reloading

Type:
  • CustomEvent
Example

Triggering table reload

import {dispatchEvent} from 'core/event_dispatcher';
import * as reportEvents from 'core_reportbuilder/local/events';

dispatchEvent(reportEvents.tableReload, {}, document.querySelector(...));