Member Junction
    Preparing search index...

    Runtime renderer for WebURL dashboard parts. Displays web content in an iframe with configurable sandbox permissions.

    Hierarchy (View Summary)

    Implements

    • AfterViewInit
    Index

    Constructors

    Properties

    allowFullscreen: boolean = true
    cdr: ChangeDetectorRef
    ConfigureRequested: EventEmitter<PartConfigureEvent> = ...

    Emitted when user clicks configure button

    DataChanged: EventEmitter<PartDataChangeEvent> = ...

    Emitted when the part's data changes (e.g., selection in a grid)

    ErrorMessage: string | null = null

    Error message if the part failed to load

    iframeRef: ElementRef<HTMLIFrameElement>
    IsLoading: boolean = false

    Whether the part is currently loading

    NavigationRequested: EventEmitter<DashboardNavRequestEvent> = ...

    Emitted when the part requests navigation to another resource. Parent component handles actual routing based on the request type.

    PartType: MJDashboardPartTypeEntity | null = null

    The part type metadata

    Provider: IMetadataProvider | null

    If specified, this provider will be used for communication and for all metadata purposes. By default, if not provided, the Metadata and RunView classes are used for this and the default GraphQLDataProvider is used which is connected to the same back-end MJAPI instance as the Metadata and RunView classes. If you want to have this component connect to a different MJAPI back-end, create an instance of a ProviderBase sub-class like GraphQLDataProvider/etc, and configure it as appropriate to connect to the MJAPI back-end you want to use, and then pass it in here.

    rawUrl: string = ''
    RemoveRequested: EventEmitter<PartRemoveEvent> = ...

    Emitted when user clicks remove button

    SafeUrl: SafeResourceUrl | null = null
    sandboxMode: "strict" | "permissive" | "standard" = 'standard'
    showFallbackLink: boolean = false
    "ɵdir": unknown
    "ɵfac": unknown

    Accessors

    • get ProviderToUse(): IMetadataProvider

      Returns either the default Metadata provider or the one specified in the Provider property, if it was specified

      Returns IMetadataProvider

    • get RunQueryToUse(): IRunQueryProvider

      Returns either the default RunQuery provider or the one specified in the Provider property, if it was specified

      Returns IRunQueryProvider

    • get RunReportToUse(): IRunReportProvider

      Returns either the default RunReport provider or the one specified in the Provider property, if it was specified

      Returns IRunReportProvider

    • get RunViewToUse(): IRunViewProvider

      Returns either the default RunView provider or the one specified in the Provider property, if it was specified

      Returns IRunViewProvider

    Methods

    • A callback method that is invoked immediately after Angular has completed initialization of a component's view. It is invoked only once when the view is instantiated.

      Returns void

    • A callback method that is invoked immediately after the default change detector has checked the directive's data-bound properties for the first time, and before any of the view or content children have been checked. It is invoked only once when the directive is instantiated.

      Returns void

    • Request navigation to a specific nav item within an application. Supports setting URL query parameters after navigation.

      Parameters

      • navItemName: string
      • OptionalappName: string
      • OptionalqueryParams: Record<string, string>
      • openInNewTab: boolean = false

      Returns void