# SelectEditorParams

> _Since v1.0.0_

Configuration parameters for the built-in select editor.

#### Example

```typescript
{ field: 'status', type: 'select', editable: true, editorParams: { includeEmpty: true, emptyLabel: '-- Select --' } }
```

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `includeEmpty?` | <code>boolean</code> | Include an empty option at the start |
| `emptyLabel?` | <code>string</code> | Label for the empty option (default: '') |
