Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 439 Bytes

50_BackendUI.md

File metadata and controls

19 lines (16 loc) · 439 Bytes

Backend UI

It is possible to extend the backend user interface. Listen to the event dynamic_search.event.settings.postBuildLayout:

document.addEventListener(
    'dynamic_search.event.settings.postBuildLayout',
    (event) => {
        const dsSettings = event.detail.subject;

        dsSettings.panel.add({
            'xtype': 'button',
            'text': 'my button'
            // ...etc
        });
    }
);