Accordion
Defined in: js-api/src/widgets/containers.ts:21
Accordion control with collapsible/expandable panes. Samples: https://public.datagrok.ai/js/samples/ui/accordion
Extends
Constructors
Constructor
new Accordion(
dart):Accordion
Defined in: js-api/src/widgets/containers.ts:24
Parameters
| Parameter | Type |
|---|---|
dart | any |
Returns
Accordion
Constructs
Accordion
Overrides
Properties
| Property | Modifier | Type | Default value | Description | Inherited from | Defined in |
|---|---|---|---|---|---|---|
_functions | protected | Func[] | [] | - | DartWidget._functions | js-api/src/widgets/base.ts:277 |
_properties | protected | Property[] | [] | - | DartWidget._properties | js-api/src/widgets/base.ts:276 |
_root | protected | HTMLElement | undefined | - | DartWidget._root | js-api/src/widgets/base.ts:275 |
dart | public | any | undefined | - | DartWidget.dart | js-api/src/widgets/base.ts:280 |
factory | public | Func | null | null | Constructor function. No parameters, returns [Widget]. | DartWidget.factory | js-api/src/widgets/base.ts:273 |
isDetached | public | boolean | false | - | DartWidget.isDetached | js-api/src/widgets/base.ts:281 |
props | public | any | undefined | - | DartWidget.props | js-api/src/widgets/base.ts:278 |
subs | public | Subscription[] | undefined | - | DartWidget.subs | js-api/src/widgets/base.ts:279 |
temp | public | any | undefined | Contains auxiliary information | DartWidget.temp | js-api/src/widgets/base.ts:270 |
Accessors
aiDescription
Get Signature
get aiDescription():
string|null
Defined in: js-api/src/widgets/base.ts:451
AI briefing of the underlying Dart widget.
Returns
string | null
Set Signature
set aiDescription(
x):void
Defined in: js-api/src/widgets/base.ts:456
A short AI-facing briefing: what this widget is, what its functions do, and how the assistant should approach it (e.g. which getFunctions entries to call first). Shown to the AI assistant as part of the workspace context.
Parameters
| Parameter | Type |
|---|---|
x | string | null |
Returns
void
Inherited from
autoHideTabHeader
Get Signature
get autoHideTabHeader():
boolean
Defined in: js-api/src/widgets/containers.ts:51
Whether tab header should be hidden if there is only one tab
Returns
boolean
Set Signature
set autoHideTabHeader(
x):void
Defined in: js-api/src/widgets/containers.ts:52
Parameters
| Parameter | Type |
|---|---|
x | boolean |
Returns
void
children
Get Signature
get children():
Widget<any>[]
Defined in: js-api/src/widgets/base.ts:362
Parent widget up the DOM tree, or null.
Returns
Widget<any>[]
Inherited from
context
Get Signature
get context():
any
Defined in: js-api/src/widgets/containers.ts:29
An object this accordion is associated with
Returns
any
Set Signature
set context(
x):void
Defined in: js-api/src/widgets/containers.ts:32
Parameters
| Parameter | Type |
|---|---|
x | any |
Returns
void
header
Get Signature
get header():
HTMLElement
Defined in: js-api/src/widgets/containers.ts:47
Header element on top of the accordion
Returns
HTMLElement
Set Signature
set header(
header):void
Defined in: js-api/src/widgets/containers.ts:48
Parameters
| Parameter | Type |
|---|---|
header | HTMLElement |
Returns
void
panes
Get Signature
get panes():
AccordionPane[]
Defined in: js-api/src/widgets/containers.ts:42
Returns
parent
Get Signature
get parent():
Widget<any> |null
Defined in: js-api/src/widgets/base.ts:359
Parent widget up the DOM tree, or null.
Returns
Widget<any> | null
Inherited from
root
Get Signature
get root():
HTMLElement
Defined in: js-api/src/widgets/base.ts:445
Widget's visual root.
Returns
HTMLElement
Inherited from
type
Get Signature
get type():
string
Defined in: js-api/src/widgets/base.ts:444
Returns
string
Inherited from
Methods
addCountPane()
addCountPane(
name,getContent,getCount,expanded?,before?,allowDragOut?):AccordionPane
Defined in: js-api/src/widgets/containers.ts:74
Adds a pane with the count indicator next to the title. getCount() is executed immediately.
Parameters
| Parameter | Type | Default value |
|---|---|---|
name | string | undefined |
getContent | () => HTMLElement | undefined |
getCount | () => number | undefined |
expanded | boolean | false |
before | AccordionPane | null | null |
allowDragOut | boolean | true |
Returns
addPane()
addPane(
name,getContent,expanded?,before?,allowDragOut?):AccordionPane
Defined in: js-api/src/widgets/containers.ts:67
Adds a pane
Parameters
| Parameter | Type | Default value |
|---|---|---|
name | string | undefined |
getContent | () => HTMLElement | undefined |
expanded | boolean | false |
before | AccordionPane | null | null |
allowDragOut | boolean | true |
Returns
addTitle()
addTitle(
element):void
Defined in: js-api/src/widgets/containers.ts:62
Adds a title element.
Parameters
| Parameter | Type |
|---|---|
element | HTMLElement |
Returns
void
apply()
apply(
properties):Widget
Defined in: js-api/src/widgets/base.ts:318
Parameters
| Parameter | Type | Description |
|---|---|---|
properties | object | - |
Returns
Inherited from
detach()
detach():
void
Defined in: js-api/src/widgets/base.ts:371
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
end()
end():
void
Defined in: js-api/src/widgets/containers.ts:85
Finalizes accordion construction
Returns
void
getDartProperties()
getDartProperties():
any[]
Defined in: js-api/src/widgets/base.ts:347
Returns
any[]
Inherited from
getFunctions()
getFunctions():
Func[]
Defined in: js-api/src/widgets/base.ts:447
Functions that are applicable to this particular widget. Used in the UI to display context actions, and for the AI integrations.
Returns
Func[]
Inherited from
getPane()
getPane(
name):AccordionPane
Defined in: js-api/src/widgets/containers.ts:57
Returns a pane with the specified name.
Parameters
| Parameter | Type | Description |
|---|---|---|
name | string | - |
Returns
getProperties()
getProperties():
Property[]
Defined in: js-api/src/widgets/base.ts:446
Returns all properties of this widget.
Returns
Property[]
Inherited from
getWidgetStatus()
getWidgetStatus():
IWidgetStatus
Defined in: js-api/src/widgets/base.ts:448
Returns the widget's runtime structure for automated testing and introspection.
Returns
Inherited from
onEvent()
onEvent(
eventId?):Observable<any>
Defined in: js-api/src/widgets/base.ts:462
Observes events with the specified eventId. Override in subclasses to provide actual events.
Parameters
| Parameter | Type | Default value |
|---|---|---|
eventId | string | null | null |
Returns
Observable<any>
Inherited from
onFrameAttached()
onFrameAttached(
dataFrame):void
Defined in: js-api/src/widgets/base.ts:353
Parameters
| Parameter | Type |
|---|---|
dataFrame | DataFrame |
Returns
void
Inherited from
onPropertyChanged()
onPropertyChanged(
property):void
Defined in: js-api/src/widgets/base.ts:345
Gets called when viewer's property is changed.
Parameters
| Parameter | Type | Description |
|---|---|---|
property | Property | null | or null, if multiple properties were changed. |
Returns
void
Inherited from
removePane()
removePane(
pane):void
Defined in: js-api/src/widgets/containers.ts:80
Removed the specified pane.
Parameters
| Parameter | Type |
|---|---|
pane | AccordionPane |
Returns
void
sourceRowsChanged()
sourceRowsChanged():
void
Defined in: js-api/src/widgets/base.ts:351
Returns
void
Inherited from
sub()
sub(
subscription):void
Defined in: js-api/src/widgets/base.ts:311
Registers a subscription to an external event.
Parameters
| Parameter | Type | Description |
|---|---|---|
subscription | Subscription | - |
Returns
void
Inherited from
toDart()
toDart():
any
Defined in: js-api/src/widgets/base.ts:303
Returns
any
Inherited from
create()
staticcreate(key?):Accordion
Defined in: js-api/src/widgets/containers.ts:37
Creates a new instance of Accordion
Parameters
| Parameter | Type | Default value |
|---|---|---|
key | any | null |
Returns
Accordion
find()
staticfind(root):Widget<any> |null
Defined in: js-api/src/widgets/base.ts:299
Finds existing widget from its visual root.
Parameters
| Parameter | Type |
|---|---|
root | Element |
Returns
Widget<any> | null
Inherited from
fromRoot()
staticfromRoot(root):Widget
Defined in: js-api/src/widgets/base.ts:421
Creates a new widget from the root element.
Parameters
| Parameter | Type |
|---|---|
root | HTMLElement |
Returns
Inherited from
getAll()
staticgetAll():Widget<any>[]
Defined in: js-api/src/widgets/base.ts:294
Returns all currently active widgets.
Returns
Widget<any>[]