core_reportbuilder/local/events

Description:
  • Report builder events

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

Report builder events

Events

tableReload

Description:
  • Trigger table reloading

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)

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(...));