# UIButtonRowElement

***

Represents a row of buttons.

It is useful to group buttons together and align them.

Unlike on [UIGridContainerElement](/js-sdk-api-reference/ui/uigridcontainerelement.md), buttons do not expand to fill the container. Instead, they use the space they need and are wrapped to the next line when they overflow.

### Label

A label can be added to the button row using the `label` property.

<figure><img src="/files/cK98gtQCJMH0y3P0kJOS" alt="Label"><figcaption><p>Label</p></figcaption></figure>

```typescript
{
  type: "ButtonRow",
  label: "Zoom control",
  items: [
    { type: "Button", label: "Increase", onClick: () => {} },
    { type: "Button", label: "Decrease", onClick: () => {} },
  ],
}
```

### Alignment

It is possible to align the button row to the start or end of the container using the `align` property.

#### Start alignment

<figure><img src="/files/ysAv67rrmG5xH6XOjTxB" alt="Start alignment"><figcaption><p>Start alignment</p></figcaption></figure>

```typescript
{
  type: "ButtonRow",
  align: "start", // default value
  items: [
    { type: "Button", label: "Button 1", onClick: () => {} },
    { type: "Button", label: "Button 2", onClick: () => {} },
  ],
}
```

#### End alignment

<figure><img src="/files/XwJ8KYgywBy2ieGloFq9" alt="End alignment"><figcaption><p>End alignment</p></figcaption></figure>

```typescript
{
  type: "ButtonRow",
  align: "end",
  items: [
    { type: "Button", label: "Button 1", onClick: () => {} },
    { type: "Button", label: "Button 2", onClick: () => {} },
  ],
}
```

### Overflow

When buttons overflow the container, they are wrapped to the next line.

<figure><img src="/files/i0uoc4mi2JnHLMfDYBHf" alt="Overflow"><figcaption><p>Overflow</p></figcaption></figure>

```typescript
{
  type: "ButtonRow",
  items: [
    { type: "Button", label: "Button with a very long text", onClick: () => {} },
    { type: "Button", label: "Button 2", onClick: () => {} },
    { type: "Button", label: "Button 3", onClick: () => {} },
  ],
}
```

### With Grid container

[UIGridContainerElement](/js-sdk-api-reference/ui/uigridcontainerelement.md), as a generic container, can render [UIButtonRowElement](/js-sdk-api-reference/ui/uibuttonrowelement.md) as well.

In this example, the combination of [UIGridContainerElement](/js-sdk-api-reference/ui/uigridcontainerelement.md) and [UIButtonRowElement](/js-sdk-api-reference/ui/uibuttonrowelement.md) is used to layout a footer where the buttons are aligned to the end of the container and the text is at the start.

<figure><img src="/files/V8qYlYQmqoKvY1mnM3U5" alt="With Grid container"><figcaption><p>With Grid container</p></figcaption></figure>

```typescript
{
  type: "Grid",
  grid: "auto-flow / 1fr auto",
  rowItemsJustify: "space-between",
  rowItemsAlign: "center",
  items: [
    { type: "Text", content: "Continue?" },
    {
      type: "ButtonRow",
      align: "end",
      items: [
        { type: "Button", variant: "transparent", label: "Cancel", onClick: () => {} },
        { type: "Button", variant: "filled", tint: "primary", label: "Continue", onClick: () => {} },
      ]
    },
  ],
}
```

## Properties

### type

> **type**: `"ButtonRow"`

***

### items

> **items**: [`UIButtonElement`](/js-sdk-api-reference/ui/uibuttonelement.md)\[]

The items to add to the button row.

***

### id

> **id**: `string`

The ID of the element.

***

### align?

> `optional` **align**: `"start"` | `"end"`

The alignment of the button row.

#### Default Value

`"start"`

***

### onCreate()?

> `optional` **onCreate**: (`args`: { `id`: `string`; }) => `void`

A function to call when the element is created.

#### Parameters

| Parameter | Type                | Description                           |
| --------- | ------------------- | ------------------------------------- |
| `args`    | { `id`: `string`; } | The arguments passed to the function. |
| `args.id` | `string`            | The id of the element.                |

#### Returns

`void`

***

### onDestroy()?

> `optional` **onDestroy**: (`args`: { `id`: `string`; }) => `void`

A function to call when the element is destroyed.

#### Parameters

| Parameter | Type                | Description                           |
| --------- | ------------------- | ------------------------------------- |
| `args`    | { `id`: `string`; } | The arguments passed to the function. |
| `args.id` | `string`            | The id of the element.                |

#### Returns

`void`

***

### label?

> `optional` **label**: `string`

Label text to display above the element and used for screen readers.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.felt.com/js-sdk-api-reference/ui/uibuttonrowelement.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
