Description

A dialog component that can be used to create a popup dialog

Export

WebzDialog

Example

const dialog = new WebzDialog("<h1>Hello World</h1>", "h1{color:red;}");

Hierarchy (view full)

Constructors

  • Parameters

    • Optional html: string = ""

      The html as a string to be used as the body of this component

    • Optional css: string = ""

      The css as a string to be used as the style of this component

    Returns WebzDialog

    Description

    Creates an instance of WebzDialog.

    Memberof

    WebzDialog

    Example

    const dlg = new WebzDialog("<h1>Hello World</h1>", "h1{color:red;}");
    

Properties

background: HTMLDivElement
closeEvent: Notifier<string> = ...
popup: HTMLDivElement
popupButtons: HTMLButtonElement[] = []

Accessors

Methods

  • Parameters

    • component: WebzComponent

      The component to add

    • id: string = "root"

      The id of the element to append the component to (optional)

    • front: boolean = false

    Returns void

    void

    Description

    Add a component to the dom

    Memberof

    WebzComponent

    Example

    component.addComponent(childComponent);
    component.addComponent(childComponent, "myDiv");
  • Parameters

    • Optional show: boolean = true

      Show or hide the dialog

    Returns void

    void

    Description

    Show or hide the dialog

    Memberof

    WebzDialog

    Example

    const dialog = new MyDialog();
    dialog.show();
    dialog.closeEvent.subscribe((value) => {
    console.log(value);
    dialog.show(false);
    });
  • Type Parameters

    • T = any

    Parameters

    • url: string

      The URL to make the AJAX call to

    • method: HttpMethod

      The HTTP method to use (GET or POST)

    • headers: any[] = []

      The headers to send with the request (optional)

    • Optional data: any

      The data to send in the request body (optional)

    Returns Notifier<T>

    A promise that resolves with the response data

    Description

    Makes an AJAX call

    Memberof

    WebzComponent

    Static

    Example

    myComponent.ajax("https://some.api.url.com/posts", HttpMethod.GET)
    .subscribe((data) => {
    console.log(data);
    }, (error) => {
    console.error(error);
    });
  • Parameters

    • attachTo: WebzComponent

      The component to attach the dialog to

    • message: string

      The message to display

    • Optional title: string = "Alert"

      The title of the dialog

    • Optional buttons: string[] = ...

      The buttons to display

    • Optional btnClass: string = ""

      The class to apply to the buttons

    Returns Notifier<string>

    The event subject that is triggered when the dialog is closed

    Description

    Show a popup dialog

    Static

    Memberof

    WebzDialog

    Example

    WebzDialog.popup("Hello World", "Alert", ["Ok","Cancel"], "btn btn-primary")
    .subscribe((value:string) => {
    if (value === "Ok") console.log("Ok was clicked");
    else console.log("Cancel was clicked");
    });

Generated using TypeDoc