# setFieldUnit

### Parameters

1. controlId - Id of the control
2. The string value of the unit you want to set. If this parameter is not set, the unit will be removed.

### Example Usages

Simple textbox

```javascript
   brixxApi.setFieldUnit("myControlId", "€");
```

Remove unit

```javascript
   brixxApi.setFieldUnit("myControlId");
```
