# Enable / Disable buttons

In our user interface it is possible to nearly hide every button which is not dynamically generated. This means you can hide all buttons on the left side and also all buttons in the bottom bar.

<figure><img src="/files/or3W4V582069uPA9CbkZ" alt=""><figcaption></figcaption></figure>

Hiding buttons is possible within the init data or in the tenant settings. You have to override the `buttons` object with the right key of the button. Hiding buttons can be useful when you either want to implement you own button in html or when you just do not want that a user has a certain functionality.

You can look up the complete list of buttons in the UI\_BUTTONS enum which you can [find here](/rubens/rubens-products/rubens-products-reference/enums/types.ui_button.md)**.**

Here is a short example where the parts list button on the left is side is hidden.

```javascript
const configurator = await RoomleConfiguratorApi.createConfigurator(
  'demoConfigurator',
  document.getElementById('configurator-container'),
  {...options, buttons: {partlist: false}},
);
```


---

# 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://docs.roomle.com/rubens/rubens-products/rubens-room-designer/customisation/enable-disable-buttons.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.
