NodeProperties

class ui.nodeProperties.NodeProperties()

A web component that displays properties and user data for a selected node in a tabular format.

The component fetches and renders node information including the node name, ID, properties, and associated user data in organized tables.

Examples

<hoops-node-properties nodeId="12345"></hoops-node-properties>

Custom Element

hoops-node-properties

Attributes

nodeId

The ID of the node to display properties for

CSS Properties

–hoops-node-properties-table-border

Border style for property tables

–hoops-node-properties-header-padding

Padding for table headers

Since

2025.7.0

Index

Constructors

Properties

Constructors

ui.nodeProperties.NodeProperties.constructor()
NodeProperties(): NodeProperties

Returns: NodeProperties

Properties

ui.nodeProperties.NodeProperties.node

The adapter instance used to fetch node data.

Can be customized by providing any object implementing the INodePropertyAdapter interface.

Default

```ts new NodePropertyAdapter() ```

ui.nodeProperties.NodeProperties.nodeId
nodeId: number

The ID of the node to display properties for.

Default

```ts Number.NaN ```