Member Junction
    Preparing search index...

    Floating feedback button component

    <!-- Basic usage - bottom right corner -->
    <mj-feedback-button></mj-feedback-button>

    <!-- With label visible -->
    <mj-feedback-button [ShowLabel]="true" ButtonText="Report Issue"></mj-feedback-button>

    <!-- Different position -->
    <mj-feedback-button Position="bottom-left"></mj-feedback-button>
    Index

    Constructors

    Properties

    ButtonText: string = 'Feedback'

    Button text (shown as tooltip or label)

    CurrentPageProvider?: () => string | undefined

    Optional callback to get the current page/view name. Use this for apps where URL doesn't reflect navigation (e.g., tab-based apps).

    <mj-feedback-button [CurrentPageProvider]="getCurrentPage"></mj-feedback-button>
    
    getCurrentPage = (): string => {
    return this.workspaceManager.GetConfiguration()?.tabs
    .find(t => t.id === this.workspaceManager.GetActiveTabId())?.title || '';
    };
    Position: FeedbackButtonPosition = 'bottom-right'

    Position of the floating button

    ShowLabel: boolean = false

    Whether to show the text label

    Methods