Trilium Frontend API
    Preparing search index...

    Interface OptionsMenu

    Hierarchy (View Summary)

    Index

    Properties

    groupClickMenu?: GroupContextMenuSignature
    groupClickPopup?: string | HTMLElement | PopupFunction<GroupComponent>

    You can add a click popup to any group header by passing the popup contents to the groupClickPopup option in the table constructor object.

    groupContextMenu?: MenuObject<GroupComponent>[]
    groupContextPopup?: string | HTMLElement | PopupFunction<GroupComponent>

    You can add a right click popup to any group header by passing the popup contents to the groupContextPopup option in the table constructor object.

    groupDblClickMenu?: GroupContextMenuSignature
    groupDblClickPopup?: string | HTMLElement | PopupFunction<GroupComponent>

    You can add a double click popup to any group header by passing the popup contents to the groupDblClickPopup option in the table constructor object.

    popupContainer?: string | boolean | HTMLElement

    By default Tabulator will append the menu element to the body element of the DOM as this allows the menu to appear correctly in the vast majority of situations. There are some circumstances where you may want the menu to be appended to a different element, such as the body of a modal, so that the menu is contained with that element. In these circumstances you can use the popupContainer option to specify the element that the menu should be appended to.

    rowClickPopup?: string | HTMLElement | PopupFunction<RowComponent>

    You can add a click popup to any row by passing the popup contents to the rowClickPopup option in the table constructor object.

    rowContextMenu?: RowContextMenuSignature
    rowContextPopup?: string | HTMLElement | PopupFunction<RowComponent>

    You can add a right click popup to any row by passing the popup contents to the rowContextPopup option in the table constructor object.

    rowDblClickMenu?: RowContextMenuSignature
    rowDblClickPopup?: string | HTMLElement | PopupFunction<RowComponent>

    You can add a double click popup to any row by passing the popup contents to the rowDblClickPopup option in the table constructor object.