ColumnGrid
Defined in: js-api/src/grid.ts:1413
Proxy class for the Dart-based column grid.
Extends
Constructors
Constructor
new ColumnGrid(
dart):ColumnGrid
Defined in: js-api/src/grid.ts:1414
Parameters
| Parameter | Type |
|---|---|
dart | any |
Returns
ColumnGrid
Overrides
Properties
| Property | Modifier | Type | Default value | Description | Inherited from | Defined in |
|---|---|---|---|---|---|---|
_functions | protected | Func[] | [] | - | Widget._functions | js-api/src/widgets/base.ts:214 |
_properties | protected | Property[] | [] | - | Widget._properties | js-api/src/widgets/base.ts:213 |
_root | protected | HTMLElement | undefined | - | Widget._root | js-api/src/u2core/component.ts:423 |
_u2 | readonly | ComponentState | undefined | - | Widget._u2 | js-api/src/u2core/component.ts:76 |
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. | Widget.componentMeta | js-api/src/u2core/component.ts:71 |
dart | readonly | any | undefined | - | Widget.dart | js-api/src/grid.ts:1414 |
factory | public | Func | null | null | Constructor function. No parameters, returns [Widget]. | Widget.factory | js-api/src/widgets/base.ts:211 |
isDetached | public | boolean | false | - | Widget.isDetached | js-api/src/widgets/base.ts:218 |
props | public | any | undefined | - | Widget.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. | Widget.specProps | js-api/src/u2core/component.ts:75 |
subs | public | Subscription[] | undefined | - | Widget.subs | js-api/src/widgets/base.ts:216 |
temp | public | any | undefined | Contains auxiliary information | Widget.temp | js-api/src/widgets/base.ts:208 |
Accessors
aiDescription
Get Signature
get aiDescription():
string|null
Defined in: js-api/src/u2core/component.ts:146
A short AI-facing briefing, seeded from the registry's usage or description.
Returns
string | null
Set Signature
set aiDescription(
x):void
Defined in: js-api/src/u2core/component.ts:150
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
currentColumn
Get Signature
get currentColumn():
Column
Defined in: js-api/src/grid.ts:1515
Returns
dfColumns
Get Signature
get dfColumns():
DataFrame
Defined in: js-api/src/grid.ts:1474
Returns
dfSource
Get Signature
get dfSource():
DataFrame
Defined in: js-api/src/grid.ts:1475
Returns
filter
Get Signature
get filter(): (
c) =>boolean
Defined in: js-api/src/grid.ts:1480
Returns
(c) => boolean
Set Signature
set filter(
f):void
Defined in: js-api/src/grid.ts:1481
Parameters
| Parameter | Type |
|---|---|
f | (c) => boolean |
Returns
void
grid
Get Signature
get grid():
Grid
Defined in: js-api/src/grid.ts:1476
Returns
mouseOverColumn
Get Signature
get mouseOverColumn():
Column
Defined in: js-api/src/grid.ts:1516
Returns
name
Get Signature
get name():
string|undefined
Defined in: js-api/src/u2core/component.ts:67
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).
Returns
string | undefined
Set Signature
set name(
x):void
Defined in: js-api/src/u2core/component.ts:68
Parameters
| Parameter | Type |
|---|---|
x | string | undefined |
Returns
void
Inherited from
nameCol
Get Signature
get nameCol():
Column
Defined in: js-api/src/grid.ts:1477
Returns
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/u2core/component.ts:228
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():
HTMLElement
Defined in: js-api/src/u2core/component.ts:431
Returns
HTMLElement
Set Signature
set root(
x):void
Defined in: js-api/src/u2core/component.ts:435
Parameters
| Parameter | Type |
|---|---|
x | HTMLElement |
Returns
void
Inherited from
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
showSearch
Get Signature
get showSearch():
boolean
Defined in: js-api/src/grid.ts:1489
Returns
boolean
Set Signature
set showSearch(
x):void
Defined in: js-api/src/grid.ts:1490
Parameters
| Parameter | Type |
|---|---|
x | boolean |
Returns
void
type
Get Signature
get type():
string
Defined in: js-api/src/widgets/base.ts:205
Returns
string
Inherited from
typeNameCol
Get Signature
get typeNameCol():
Column
Defined in: js-api/src/grid.ts:1478
Returns
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