TabControl
Defined in: js-api/src/widgets/containers.ts:121
Tab control that hosts panes inside. See also TabPane
Extends
Constructors
Constructor
new TabControl(
dart):TabControl
Defined in: js-api/src/widgets/containers.ts:123
Parameters
| Parameter | Type |
|---|---|
dart | any |
Returns
TabControl
Overrides
Properties
| Property | Modifier | Type | Default value | Description | Inherited from | Defined in |
|---|---|---|---|---|---|---|
_functions | protected | Func[] | [] | - | DartWidget._functions | js-api/src/widgets/base.ts:214 |
_properties | protected | Property[] | [] | - | DartWidget._properties | js-api/src/widgets/base.ts:213 |
_root | protected | HTMLElement | undefined | - | DartWidget._root | js-api/src/u2core/component.ts:445 |
_u2 | readonly | ComponentState | undefined | - | DartWidget._u2 | js-api/src/u2core/component.ts:82 |
componentMeta? | public | ComponentMetaBase | undefined | The 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.componentMeta | js-api/src/u2core/component.ts:77 |
dart | public | any | undefined | - | DartWidget.dart | js-api/src/widgets/base.ts:217 |
factory | public | Func | null | null | Constructor function. No parameters, returns [Widget]. | DartWidget.factory | js-api/src/widgets/base.ts:211 |
isDetached | public | boolean | false | - | DartWidget.isDetached | js-api/src/widgets/base.ts:218 |
props | public | any | undefined | - | DartWidget.props | js-api/src/widgets/base.ts:215 |
specProps? | public | Record<string, unknown> | undefined | The 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.specProps | js-api/src/u2core/component.ts:81 |
subs | public | Subscription[] | undefined | - | DartWidget.subs | js-api/src/widgets/base.ts:216 |
temp | public | any | undefined | Contains auxiliary information | DartWidget.temp | js-api/src/widgets/base.ts:208 |
Accessors
aiDescription
Get Signature
get aiDescription():
string|null
Defined in: js-api/src/widgets/base.ts:457
AI briefing of the underlying Dart widget.
Returns
string | null
Set Signature
set aiDescription(
x):void
Defined in: js-api/src/widgets/base.ts:462
A short AI-facing briefing, seeded from the registry's usage or description.
Parameters
| Parameter | Type |
|---|---|
x | string | null |
Returns
void
Inherited from
ambientAdoption
Get Signature
get
protectedambientAdoption():boolean
Defined in: js-api/src/widgets/base.ts:272
A widget wrapper minted inside somebody's effect scope must not be auto-disposed with it.
Returns
boolean
Inherited from
children
Get Signature
get children():
Widget<any>[]
Defined in: js-api/src/widgets/base.ts:304
Parent widget up the DOM tree, or null.
Returns
Widget<any>[]
Inherited from
currentPane
Get Signature
get currentPane():
TabPane
Defined in: js-api/src/widgets/containers.ts:170
Currently visible pane
Returns
Set Signature
set currentPane(
v):void
Defined in: js-api/src/widgets/containers.ts:171
Parameters
| Parameter | Type |
|---|---|
v | TabPane |
Returns
void
header
Get Signature
get header():
HTMLDivElement
Defined in: js-api/src/widgets/containers.ts:144
Header shown on top of the control
Returns
HTMLDivElement
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
| Parameter | Type |
|---|---|
x | string | undefined |
Returns
void
Inherited from
onBeforeTabChanged
Get Signature
get onBeforeTabChanged():
Observable<any>
Defined in: js-api/src/widgets/containers.ts:174
Occurs before the active pane is changed
Returns
Observable<any>
onTabAdded
Get Signature
get onTabAdded():
Observable<any>
Defined in: js-api/src/widgets/containers.ts:180
Occurs after a pane is added
Returns
Observable<any>
onTabChanged
Get Signature
get onTabChanged():
Observable<any>
Defined in: js-api/src/widgets/containers.ts:177
Occurs after the active pane is changed
Returns
Observable<any>
onTabRemoved
Get Signature
get onTabRemoved():
Observable<any>
Defined in: js-api/src/widgets/containers.ts:183
Occurs after a pane is removed
Returns
Observable<any>
panes
Get Signature
get panes():
TabPane[]
Defined in: js-api/src/widgets/containers.ts:150
Panes currently present in the pane control. Do not change the array, use addPane instead
Returns
TabPane[]
parent
Get Signature
get parent():
Widget<any> |null
Defined in: js-api/src/widgets/base.ts:301
Parent widget up the DOM tree, or null.
Returns
Widget<any> | null
Inherited from
propertyTarget
Get Signature
get propertyTarget():
unknown
Defined in: js-api/src/widgets/base.ts:450
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
propertyTier
Get Signature
get propertyTier():
boolean
Defined in: js-api/src/widgets/base.ts:276
Every property getProperties declares is a bind step, read and written on propertyTarget.
Returns
boolean
Inherited from
root
Get Signature
get root():
HTMLDivElement
Defined in: js-api/src/widgets/containers.ts:139
Visual root
Returns
HTMLDivElement
Overrides
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
Inherited from
type
Get Signature
get type():
string
Defined in: js-api/src/widgets/base.ts:448
Returns
string
Inherited from
Methods
_notifyPropertyChange()
protected_notifyPropertyChange(p):void
Defined in: js-api/src/widgets/base.ts:351
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
| Parameter | Type |
|---|---|
p | Property | null |
Returns
void
Inherited from
DartWidget._notifyPropertyChange
_ownPropertyChanges()
protected_ownPropertyChanges():ObservableLike<PropertyChange>
Defined in: js-api/src/widgets/base.ts:356
Returns
ObservableLike<PropertyChange>
Inherited from
DartWidget._ownPropertyChanges
_scopeMinted()
protected_scopeMinted(_scope):void
Defined in: js-api/src/widgets/base.ts:320
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
| Parameter | Type |
|---|---|
_scope | Scope |
Returns
void
Inherited from
_wireDartLifecycle()
protected_wireDartLifecycle():void
Defined in: js-api/src/widgets/base.ts:336
Dart-owned lifecycle: the platform kill disposes the scope, and disposing the scope kills the widget through the kill-walk.