Skip to main content

Dialog<Inputs>

Defined in: js-api/src/widgets/forms.ts:29

A non-modal dialog. Sample: https://public.datagrok.ai/js/samples/ui/dialogs/dialogs

Example​

ui.dialog('Windows')
.add(ui.span(['People of Earth, your attention, please… ']))
.onOK(() => { grok.shell.info('OK!'); })
.show();

Extends​

Extended by​

Type Parameters​

Type ParameterDefault type
Inputs extends Record<string, InputBase<any>>object

Constructors​

Constructor​

new Dialog<Inputs>(dart): Dialog<Inputs>

Defined in: js-api/src/widgets/forms.ts:31

Parameters​

ParameterType
dartany

Returns​

Dialog<Inputs>

Overrides​

DartWidget.constructor

Properties​

PropertyModifierTypeDefault valueDescriptionInherited fromDefined in
_functionsprotectedFunc[][]-DartWidget._functionsjs-api/src/widgets/base.ts:207
_propertiesprotectedProperty[][]-DartWidget._propertiesjs-api/src/widgets/base.ts:206
_rootprotectedHTMLElementundefined-DartWidget._rootjs-api/src/u2core/component.ts:445
_u2readonlyComponentStateundefined-DartWidget._u2js-api/src/u2core/component.ts:82
componentMeta?publicComponentMetaBaseundefinedThe registry metadata of the tag that built this component, stamped by the spec renderer — the single source the introspection surface below is generated from.DartWidget.componentMetajs-api/src/u2core/component.ts:77
dartpublicanyundefined-DartWidget.dartjs-api/src/widgets/base.ts:212
factorypublicFunc | nullnullConstructor function. No parameters, returns [Widget].DartWidget.factoryjs-api/src/widgets/base.ts:204
isDetachedpublicbooleanfalseWhether detach has been called.DartWidget.isDetachedjs-api/src/widgets/base.ts:214
propspublicanyundefinedProperty bag over this widget's properties; read and write them by name.DartWidget.propsjs-api/src/widgets/base.ts:209
specProps?publicRecord<string, unknown>undefinedThe props the registry's create was handed, stamped alongside componentMeta: the last resort of the property read below, for a component that keeps a prop under another name or not at all (a create wrapping a bare element). Construction-time values — a live one always wins.DartWidget.specPropsjs-api/src/u2core/component.ts:81
subspublicSubscription[]undefinedSubscriptions cancelled when the widget is detached.DartWidget.subsjs-api/src/widgets/base.ts:211
temppublicanyundefinedContains auxiliary informationDartWidget.tempjs-api/src/widgets/base.ts:201

Accessors​

aiDescription​

Get Signature​

get aiDescription(): string | null

Defined in: js-api/src/widgets/base.ts:474

AI briefing of the underlying Dart widget.

Returns​

string | null

Set Signature​

set aiDescription(x): void

Defined in: js-api/src/widgets/base.ts:479

A short AI-facing briefing, seeded from the registry's usage or description.

Parameters​
ParameterType
xstring | null
Returns​

void

Inherited from​

DartWidget.aiDescription


ambientAdoption​

Get Signature​

get protected ambientAdoption(): boolean

Defined in: js-api/src/widgets/base.ts:266

A widget wrapper minted inside somebody's effect scope must not be auto-disposed with it.

Returns​

boolean

Inherited from​

DartWidget.ambientAdoption


children​

Get Signature​

get children(): Widget<any>[]

Defined in: js-api/src/widgets/base.ts:301

Parent widget up the DOM tree, or null.

Returns​

Widget<any>[]

Inherited from​

DartWidget.children


helpUrl​

Get Signature​

get helpUrl(): string

Defined in: js-api/src/widgets/forms.ts:44

When provided, adds a "?" icon to the dialog header on the right.

Returns​

string

Set Signature​

set helpUrl(url): void

Defined in: js-api/src/widgets/forms.ts:45

Parameters​
ParameterType
urlstring
Returns​

void


inputs​

Get Signature​

get inputs(): InputBase<any>[]

Defined in: js-api/src/widgets/forms.ts:52

Returns a list of the dialog's inputs.

Returns​

InputBase<any>[]


name​

Get Signature​

get name(): string | undefined

Defined in: js-api/src/u2core/component.ts:469

A named control carries its name in the DOM: data-u2-name is the stable automation id selectors, tutorials and agents address the control by — the same attribute the spec renderer stamps on named nodes, so hand-built and spec-built UI share one selector vocabulary. Derived names (an input's label fallback) never stamp — see Component.deriveName.

Returns​

string | undefined

Set Signature​

set name(x): void

Defined in: js-api/src/u2core/component.ts:473

Unique within a spec: the anchor for selection, patches and automation. An accessor pair (not a field), so a platform descendant's own name accessors override it legally (TS2611).

Parameters​
ParameterType
xstring | undefined
Returns​

void

Inherited from​

DartWidget.name


namedInputs​

Get Signature​

get namedInputs(): Inputs

Defined in: js-api/src/widgets/forms.ts:135

gets typed inputs with captions as keys.

Returns​

Inputs


onAfterOK​

Get Signature​

get onAfterOK(): Observable<any>

Defined in: js-api/src/widgets/forms.ts:99

Fires after the OK handler completes successfully.

Returns​

Observable<any>


onBeforeOK​

Get Signature​

get onBeforeOK(): Observable<any>

Defined in: js-api/src/widgets/forms.ts:96

Fires before the OK handler runs.

Returns​

Observable<any>


onClose​

Get Signature​

get onClose(): Observable<any>

Defined in: js-api/src/widgets/forms.ts:91

Returns​

Observable<any>


onSaveHistoryRequest​

Get Signature​

get onSaveHistoryRequest(): Observable<any>

Defined in: js-api/src/widgets/forms.ts:102

Fires when the dialog requests to save the current history snapshot.

Returns​

Observable<any>


parent​

Get Signature​

get parent(): Widget<any> | null

Defined in: js-api/src/widgets/base.ts:298

Parent widget up the DOM tree, or null.

Returns​

Widget<any> | null

Inherited from​

DartWidget.parent


propertyTarget​

Get Signature​

get propertyTarget(): unknown

Defined in: js-api/src/widgets/base.ts:468

What this component's properties are read from and written to — prop.get(target) / prop.set(target, v): the component itself, unless an adoption says otherwise.

Returns​

unknown

Inherited from​

DartWidget.propertyTarget


propertyTier​

Get Signature​

get propertyTier(): boolean

Defined in: js-api/src/widgets/base.ts:270

Every property getProperties declares is a bind step, read and written on propertyTarget.

Returns​

boolean

Inherited from​

DartWidget.propertyTier


root​

Get Signature​

get root(): HTMLElement

Defined in: js-api/src/widgets/base.ts:467

Returns​

HTMLElement

Inherited from​

DartWidget.root


scope​

Get Signature​

get scope(): Scope

Defined in: js-api/src/u2core/component.ts:53

Minted on first use; assigned before _scopeMinted fires, so the hook's own this.scope.own(...) reads the stored scope instead of re-entering the mint.

Returns​

Scope

Inherited from​

DartWidget.scope


title​

Get Signature​

get title(): string

Defined in: js-api/src/widgets/forms.ts:48

Returns the title of a dialog.

Returns​

string

Set Signature​

set title(t): void

Defined in: js-api/src/widgets/forms.ts:49

Parameters​
ParameterType
tstring
Returns​

void


type​

Get Signature​

get type(): string

Defined in: js-api/src/widgets/base.ts:466

Returns​

string

Inherited from​

DartWidget.type

Methods​

_notifyPropertyChange()​

protected _notifyPropertyChange(p): void

Defined in: js-api/src/widgets/base.ts:348

Notifies the property tier. Called from both the addProperty setter (overrides that skip super would otherwise lose props.x = writes) and onPropertyChanged (direct calls); the double notify collapses into one microtask refresh.

Parameters​

ParameterType
pProperty | null

Returns​

void

Inherited from​

DartWidget._notifyPropertyChange


_ownPropertyChanges()​

protected _ownPropertyChanges(): ObservableLike<PropertyChange>

Defined in: js-api/src/widgets/base.ts:353

Returns​

ObservableLike<PropertyChange>

Inherited from​

DartWidget._ownPropertyChanges


_scopeMinted()​

protected _scopeMinted(_scope): void

Defined in: js-api/src/widgets/base.ts:317

First-mint hook: a platform descendant wires its lifecycle here. Never fired for a scope provided to init — that path runs inside the constructor chain.

Parameters​

ParameterType
_scopeScope

Returns​

void

Inherited from​

DartWidget._scopeMinted


_wireDartLifecycle()​

protected _wireDartLifecycle(): void

Defined in: js-api/src/widgets/base.ts:333

Dart-owned lifecycle: the platform kill disposes the scope, and disposing the scope kills the widget through the kill-walk.

Returns​

void

Inherited from​

DartWidget._wireDartLifecycle


_wireJsLifecycle()​

protected _wireJsLifecycle(): void

Defined in: js-api/src/widgets/base.ts:324

JS-owned lifecycle: disposing the scope detaches the widget, and vice versa.

Returns​

void

Inherited from​

DartWidget._wireJsLifecycle


_wireLifecycle()​

protected _wireLifecycle(): void

Defined in: js-api/src/widgets/base.ts:469

Returns​

void

Inherited from​

DartWidget._wireLifecycle


add()​

add(content): Dialog<Inputs>

Defined in: js-api/src/widgets/forms.ts:122

Adds content to the dialog. using addInput() for inputs is preferred, as it provides better type safety.

Parameters​

ParameterType
contentHTMLElement | Widget<any> | InputBase<any>

Returns​

Dialog<Inputs>


addButton()​

addButton(text, action, index?, tooltip?): Dialog<Inputs>

Defined in: js-api/src/widgets/forms.ts:157

Adds command button with the specified text.

Parameters​

ParameterTypeDefault valueDescription
textstringundefined-
actionCallbackundefined-
indexnumber0-
tooltipstring | nullnull-

Returns​

Dialog<Inputs>


addContextAction()​

addContextAction(text, action): Dialog<Inputs>

Defined in: js-api/src/widgets/forms.ts:163

Adds context action with the specified text.

Parameters​

ParameterType
textstring
actionCallback

Returns​

Dialog<Inputs>


addInput()​

addInput<K, V>(caption, input): Dialog<Record<K, V> & Inputs>

Defined in: js-api/src/widgets/forms.ts:128

Adds named input, which than can be used in combo with namedInputs, to get inputs in type-safe way

Type Parameters​

Type Parameter
K extends string
V extends InputBase<any>

Parameters​

ParameterType
captionK
inputV

Returns​

Dialog<Record<K, V> & Inputs>


addProperty()​

addProperty(propertyName, propertyType, defaultValue?, options?): any

Defined in: js-api/src/widgets/base.ts:376

Registers an property with the specified type, name, and defaultValue.

Parameters​

ParameterTypeDefault valueDescription
propertyNamestringundefined-
propertyType"string" | "bigint" | "object" | "map" | "file" | "bool" | "int" | "double" | "byte_array" | "datetime" | "qnum" | "dataframe" | "numerical" | "categorical" | "num" | "string_list" | "dataframe_list" | "cell" | "column" | "column_list" | "graphics" | "blob" | "tablerowfiltercall" | "colfiltercall" | "bitset" | "dynamic" | "viewer" | "list" | "semantic_value" | "func" | "funccall" | "property" | "GridCellRenderArgs" | "element" | "view" | "TableView" | "User" | "Menu" | "Project" | "event_data" | "progressindicator" | "Credentials" | "ScriptEnvironment" | "Notebook"undefined-
defaultValueanynull-
optionsobject & IProperty | nullnull-

Returns​

any

See​

Registered property gets added to properties. Returns default value, thus allowing to combine registering a property with the initialization

options.get/options.set override how the property reads/writes (instead of the default fieldName field access); the change notification (onPropertyChanged) always fires on write, and a {get}-only options yields a custom read with the default fieldName write.

Inherited from​

DartWidget.addProperty


addStatusProvider()​

addStatusProvider(name, provider): void

Defined in: js-api/src/widgets/base.ts:437

Adds live parts, hit areas and readings to this widget's status. Providers run in registration order on every read; an existing name is replaced in place, and later providers override earlier entries. Coordinates use the widget's own hit-area system. Detaching the widget removes all providers. A subclass that overrides getWidgetStatus composes with super.getWidgetStatus().

Parameters​

ParameterTypeDescription
namestringStable name of the component contributing the status.
providerStatusProviderComputes the contribution each time the status is requested.

Returns​

void

Example​

widget.addStatusProvider('selection', () => ({values: {'selected rows': table.selection.trueCount}}));
console.log(widget.getWidgetStatus().values?.['selected rows']);
widget.removeStatusProvider('selection');
see samples/grid/custom-renderer-status

Inherited from​

DartWidget.addStatusProvider


apply()​

apply(properties): Widget

Defined in: js-api/src/widgets/base.ts:255

Parameters​

ParameterType
propertiesobject

Returns​

Widget

Inherited from​

DartWidget.apply


awaitOnOK()​

awaitOnOK<T>(handler): Promise<T>

Defined in: js-api/src/widgets/forms.ts:71

Sets the OK button handler and returns a promise of the handler callback.

Type Parameters​

Type ParameterDefault type
Tany

Parameters​

ParameterType
handler() => Promise<T>

Returns​

Promise<T>


bindProps()​

bindProps(): BindProp[]

Defined in: js-api/src/u2core/component.ts:307

The signal-backed subset of the meta props — what a binding picker offers on a named node — plus, under propertyTier, every declared property. Allocates no signal.

Returns​

BindProp[]

Inherited from​

DartWidget.bindProps


bindStep()​

bindStep(name): BindSource | Signal<unknown> | null

Defined in: js-api/src/u2core/component.ts:296

One binding step (DD5): a meta-declared prop's same-named Signal member — a named node is a bind source, generated off componentMeta the way getProperties is — then, under propertyTier, a cached signal over the declared property. '' answers the default binding: the component's own value signal, where one exists.

Parameters​

ParameterType
namestring

Returns​

BindSource | Signal<unknown> | null

Inherited from​

DartWidget.bindStep


clear()​

clear(): void

Defined in: js-api/src/widgets/forms.ts:182

Clears the content.

Returns​

void


close()​

close(): void

Defined in: js-api/src/widgets/forms.ts:145

Closes the dialog.

Returns​

void


deriveName()​

protected deriveName(x): void

Defined in: js-api/src/u2core/component.ts:72

Sets the introspection/form key without claiming an automation id — the label-fallback path: a caption is not a stable identity, so it never reaches data-u2-name.

Parameters​

ParameterType
xstring | undefined

Returns​

void

Inherited from​

DartWidget.deriveName


detach()​

detach(): void

Defined in: js-api/src/widgets/base.ts:305

Gets called when a widget is detached and will no longer be used. Typically used for unsubscribing from events. Be sure to call super.detach() if this method is overridden.

Returns​

void

Inherited from​

DartWidget.detach


dispose()​

dispose(): void

Defined in: js-api/src/u2core/component.ts:147

On a never-engaged wrapper the getter mints here and _scopeMinted wires the lifecycle (own(kill) + the platform cleanup for Dart-owned), so dispose still kills it; re-entry from the kill cleanup is a no-op via the scope's disposed flag.

Returns​

void

Inherited from​

DartWidget.dispose


effect()​

effect(fn): this

Defined in: js-api/src/u2core/component.ts:134

Parameters​

ParameterType
fn() => void

Returns​

this

Inherited from​

DartWidget.effect


fireEvent()​

protected fireEvent(eventId, args?): void

Defined in: js-api/src/u2core/component.ts:435

Parameters​

ParameterType
eventIdstring
args?unknown

Returns​

void

Inherited from​

DartWidget.fireEvent


getButton()​

getButton(text): HTMLButtonElement

Defined in: js-api/src/widgets/forms.ts:150

Returns command button with the specified text.

Parameters​

ParameterType
textstring

Returns​

HTMLButtonElement


getDartProperties()​

getDartProperties(): any[]

Defined in: js-api/src/widgets/base.ts:284

Dart handles of the properties that have one.

Returns​

any[]

Inherited from​

DartWidget.getDartProperties


getFunctions()​

getFunctions(): Func[]

Defined in: js-api/src/widgets/base.ts:472

Functions applicable to the Dart widget, as the context menu and the AI assistant see them.

Returns​

Func[]

Inherited from​

DartWidget.getFunctions


getProperties()​

getProperties(): Property[]

Defined in: js-api/src/widgets/base.ts:470

Returns all properties of this widget: the meta-generated ones plus addProperty's.

Returns​

Property[]

Inherited from​

DartWidget.getProperties


getWidgetStatus()​

getWidgetStatus(): IWidgetStatus

Defined in: js-api/src/widgets/base.ts:413

Returns the widget's runtime structure for automated testing and introspection.

Returns​

IWidgetStatus

Inherited from​

DartWidget.getWidgetStatus


history()​

history(getInput, applyInput): void

Defined in: js-api/src/widgets/forms.ts:171

Initializes the 'history' feature.

Parameters​

ParameterTypeDescription
getInput() => anycollects the input from UI into JSON-serializable object
applyInput(x) => voidrefreshes the UI according to input

Returns​

void


initDefaultHistory()​

initDefaultHistory(): Dialog<Inputs>

Defined in: js-api/src/widgets/forms.ts:176

Initializes default history.

Returns​

Dialog<Inputs>


initFromLocalStorage()​

initFromLocalStorage(): void

Defined in: js-api/src/widgets/forms.ts:192

Initializes the dialog properties from local storage.

Returns​

void


input()​

input(caption): InputBase

Defined in: js-api/src/widgets/forms.ts:55

Returns an input with the specified caption, or throws an exception.

Parameters​

ParameterType
captionstring

Returns​

InputBase


link(name, source, twoWay): void

Defined in: js-api/src/u2core/component.ts:268

Keeps this component's name step and source equal, echo-suppressed by value; the reverse direction only where twoWay. A component that took source as its own signal needs no link and gets none; a read-only step cannot follow anything and gets none either.

Parameters​

ParameterType
namestring
sourceSignal<unknown>
twoWayboolean

Returns​

void

Inherited from​

DartWidget.link


onCancel()​

onCancel(handler): Dialog<Inputs>

Defined in: js-api/src/widgets/forms.ts:85

Sets the CANCEL button handler

Parameters​

ParameterType
handlerCallback

Returns​

Dialog<Inputs>


onEvent()​

onEvent(eventId?): Observable<any>

Defined in: js-api/src/widgets/base.ts:485

Observes events with the specified eventId. Override in subclasses to provide actual events.

Parameters​

ParameterTypeDefault value
eventIdstring | nullnull

Returns​

Observable<any>

Inherited from​

DartWidget.onEvent


onFrameAttached()​

onFrameAttached(dataFrame): void

Defined in: js-api/src/widgets/base.ts:292

Called when a DataFrame is attached; override to bind data.

Parameters​

ParameterType
dataFrameDataFrame

Returns​

void

Inherited from​

DartWidget.onFrameAttached


onOK()​

onOK(handler, options?): Dialog<Inputs>

Defined in: js-api/src/widgets/forms.ts:64

Sets the OK button handler, and shows the OK button

Parameters​

ParameterType
handlerCallback
options?{ closeOnEnter?: boolean; }
options.closeOnEnter?boolean

Returns​

Dialog<Inputs>


onPropertyChanged()​

onPropertyChanged(property): void

Defined in: js-api/src/widgets/base.ts:281

Gets called when viewer's property is changed.

Parameters​

ParameterTypeDescription
propertyProperty | nullor null, if multiple properties were changed.

Returns​

void

Inherited from​

DartWidget.onPropertyChanged


own()​

own(dispose): this

Defined in: js-api/src/u2core/component.ts:139

Parameters​

ParameterType
dispose() => void

Returns​

this

Inherited from​

DartWidget.own


propertyChanges()​

protected propertyChanges(): ObservableLike<PropertyChange>

Defined in: js-api/src/widgets/base.ts:363

What refreshes the property tier's cached signals from outside: null where nothing announces a change (one-way).

Returns​

ObservableLike<PropertyChange>

Inherited from​

DartWidget.propertyChanges


registerFunction()​

protected registerFunction(f): void

Defined in: js-api/src/u2core/component.ts:431

Parameters​

ParameterType
fFuncLike

Returns​

void

Inherited from​

DartWidget.registerFunction


removeStatusProvider()​

removeStatusProvider(name): void

Defined in: js-api/src/widgets/base.ts:446

Removes the status contribution registered under name; an absent name is a no-op.

Parameters​

ParameterTypeDescription
namestringThe name passed to addStatusProvider.

Returns​

void

Example​

widget.removeStatusProvider('selection');
see samples/grid/custom-renderer-status

Inherited from​

DartWidget.removeStatusProvider


runInScope()​

runInScope<T>(fn): T

Defined in: js-api/src/u2core/component.ts:130

Type Parameters​

Type Parameter
T

Parameters​

ParameterType
fn() => T

Returns​

T

Inherited from​

DartWidget.runInScope


show()​

show(options?): Dialog<Inputs>

Defined in: js-api/src/widgets/forms.ts:110

Parameters​

ParameterTypeDescription
options?{ backgroundColor?: string; center?: boolean; centerAt?: Element; fullScreen?: boolean; height?: number; modal?: boolean; resizable?: boolean; showNextTo?: HTMLElement; width?: number; x?: number; y?: number; }-
options.backgroundColor?string-
options.center?boolean-
options.centerAt?Element-
options.fullScreen?boolean-
options.height?number-
options.modal?boolean-
options.resizable?boolean-
options.showNextTo?HTMLElement-
options.width?number-
options.x?number-
options.y?number-

Returns​

Dialog<Inputs>


showModal()​

showModal(fullScreen): Dialog<Inputs>

Defined in: js-api/src/widgets/forms.ts:116

Parameters​

ParameterType
fullScreenboolean

Returns​

Dialog<Inputs>


sourceRowsChanged()​

sourceRowsChanged(): void

Defined in: js-api/src/widgets/base.ts:289

Called when the rows the widget shows change; override to refresh.

Returns​

void

Inherited from​

DartWidget.sourceRowsChanged


sub()​

sub(subscription): void

Defined in: js-api/src/widgets/base.ts:250

Registers a subscription to an external event.

Parameters​

ParameterType
subscriptionSubscription

Returns​

void

Inherited from​

DartWidget.sub


toDart()​

toDart(): any

Defined in: js-api/src/widgets/base.ts:243

The Dart handle of this widget, created on first use.

Returns​

any

Inherited from​

DartWidget.toDart


build()​

static build(builder): Control

Defined in: js-api/src/u2core/component.ts:529

Builds a control out of plain elements: builder runs with the new control's scope ambient, so signal bindings and nested components inside it are owned by the result. The ambient scope only spans the synchronous part of builder — components constructed after an await inside it are adopted by nobody and must be disposed by hand, or constructed before the first await.

Parameters​

ParameterType
builder() => HTMLElement | (string | HTMLElement | Control)[]

Returns​

Control

Inherited from​

DartWidget.build


create()​

static create(options?): Dialog

Defined in: js-api/src/widgets/forms.ts:36

Creates a new dialog with the specified options.

Parameters​

ParameterType
options?string | { helpUrl?: string; showFooter?: boolean; showHeader?: boolean; title?: string; }

Returns​

Dialog


find()​

static find(root): Widget<any> | null

Defined in: js-api/src/widgets/base.ts:232

Finds existing widget from its visual root.

Parameters​

ParameterType
rootElement

Returns​

Widget<any> | null

Inherited from​

DartWidget.find


forElement()​

static forElement(el): Control | undefined

Defined in: js-api/src/u2core/component.ts:489

The nearest control owning el — the DOM → component door for tooling, automation and inspectors (the u2 counterpart of the platform's Widget.find). Best-effort: the last control constructed on (or assigned) a root wins it.

Parameters​

ParameterType
elElement | null

Returns​

Control | undefined

Inherited from​

DartWidget.forElement


fromRoot()​

static fromRoot(root): Widget

Defined in: js-api/src/widgets/base.ts:452

Creates a new widget from the root element.

Parameters​

ParameterType
rootHTMLElement

Returns​

Widget

Inherited from​

DartWidget.fromRoot


getAll()​

static getAll(): Widget<any>[]

Defined in: js-api/src/widgets/base.ts:227

Returns all currently active widgets.

Returns​

Widget<any>[]

Inherited from​

DartWidget.getAll


getOpenDialogs()​

static getOpenDialogs(): Dialog<{ }>[]

Defined in: js-api/src/widgets/forms.ts:187

Returns currently open dialogs.

Returns​

Dialog<{ }>[]


init()​

static init(self, scope?): void

Defined in: js-api/src/u2core/component.ts:89

Per-instance state, for a constructed component and for an adopted platform object alike.

Parameters​

ParameterType
selfComponent
scope?Scope

Returns​

void

Inherited from​

DartWidget.init


is()​

static is(x): x is Control

Defined in: js-api/src/u2core/component.ts:498

Structural probe by methods only — never .scope: the accessor mints.

Parameters​

ParameterType
xunknown

Returns​

x is Control

Inherited from​

DartWidget.is


registerCleanup()​

static registerCleanup(element, cleanup): void

Defined in: js-api/src/widgets/base.ts:238

Registers a cleanup function to run when [element] is killed — i.e. when its host view or pane closes. Also marks the element so the kill-walk can find it.

Parameters​

ParameterType
elementElement
cleanupCallback

Returns​

void

Inherited from​

DartWidget.registerCleanup


sameValue()​

static sameValue(a, b): boolean

Defined in: js-api/src/u2core/component.ts:111

The equality the property tier and link suppress echoes by: Object.is, arrays element-wise, plain objects key-wise (recursive), everything else by identity.

Parameters​

ParameterType
aunknown
bunknown

Returns​

boolean

Inherited from​

DartWidget.sameValue