Window api

Overview
API
Examples

NbWindowService

Methods

NameDescription
open()
parameters: windowContent: , windowConfig:
returns:NbWindowRef

Opens new window.

NbWindowRef

Properties

NameTypeDescription
onCloseObservable

Emits when window was closed.

stateNbWindowState

Current window state.

stateChangeObservable

Emits when window state change.

Methods

NameDescription
close()
returns:void

Closes window.

fullScreen()
returns:void

Set window on top.

maximize()
returns:void

Maximize window.

minimize()
returns:void

Minimize window.

NbWindowConfig

Properties

NameTypeDescription
buttonsPartial<NbWindowControlButtonsConfig>

Windows control buttons can be hidden by setting according property to false.

closeOnBackdropClickboolean

If set to true mouse clicks on backdrop will close a window. Default is true.

closeOnEscboolean

If true then escape press will close a window. Default is true.

contextObject

Both, template and component may receive data through config.context property. For components, this data will be set as component properties. For templates, you can access it inside template as $implicit.

hasBackdropboolean

If true than backdrop will be rendered behind window. By default set to true.

initialStateNbWindowState

Initial window state. Full screen by default.

titlestring

Window title.

titleTemplateTemplateRef<any>

Window title as template. Use it instead of title property.

titleTemplateContextObject

Title as template may receive data through config.titleTemplateContext property. Window title as Template. You can access context inside template as $implicit.

viewContainerRefViewContainerRef

Where the attached component should live in Angular's logical component tree. This affects what is available for injection and the change detection order for the component instantiated inside of the window. This does not affect where the window content will be rendered.

windowClassstring

Class to be applied to the window.

Tooltip
Previous page
Global Search
Next page

Need some help or found an issue?

Ask on Stack Overflow with tag `nebular` or post an issue on GitHub.