---
parts:
- Select Rich
- Use Cases
title: 'Select Rich: Use Cases'
eleventyNavigation:
key: 'Select Rich: Use Cases'
order: 20
parent: Select Rich
title: Use Cases
---
# Select Rich: Use Cases
```js script
import { LitElement, html } from '@mdjs/mdjs-preview';
import '@lion/ui/define/lion-select-rich.js';
import '@lion/ui/define/lion-option.js';
```
## Model value
### Setting model by the `modelValue` property
You can set the full `modelValue` for each option, which includes the checked property for whether it is checked or not.
```html
Red
```
Note, when rendering with the help of the `cache` function imported from `lit/directives/cache.js`, setting model by
the `modelValue` property is not fully supported. Consider setting the model by the `choiceValue` property instead. See [Setting model by `choiceValue` property](#setting-model-by-the-choicevalue-property) for more details.
### Setting model by the `choiceValue` property
You can set the model for each option, providing the value and the checked status as follows:
```html
RedBlue
```
## Options with HTML
The main feature of this rich select that makes it rich, is that your options can contain HTML.
```html preview-story
`;
};
```
## Interaction Mode
You can set the interaction mode to either `mac` or `windows/linux`.
By default, it will choose based on the user Operating System, but it can be forced.
This changes the keyboard interaction.
```html preview-story
RedHotpinkTealRedHotpinkTeal
```
## Checked index & value
You can get/set the checkedIndex and checkedValue.
```js preview-story
export const checkedIndexAndValue = ({ shadowRoot }) => html`
RedHotpinkTeal
`;
```
## No default selection
If you want to set a placeholder option with something like 'Please select', you can of course do this, the same way you would do it in a native select.
Simply put an option with a modelValue that is `null`.
```html
select a color
```
However, this allows the user to explicitly select this option.
Often, you may want a placeholder that appears initially, but cannot be selected explicitly by the user.
For this you can use `has-no-default-selected` attribute.
```html preview-story
RedHotpinkTeal
```
> By default, the placeholder is completely empty in the `LionSelectInvoker`,
> but subclassers can easily override this in their extension, by the overriding `_noSelectionTemplate()` method.
## Single Option
If there is a single option rendered, then `singleOption` property is set to `true` on `lion-select-rich` and invoker as well. Invoker also gets `single-option` which can be used to having desired templating and styling. As in here the arrow is not displayed for single option
```html preview-story
Red
```
When adding/removing options the `singleOption` will only be `true` when there is exactly one option.
```js preview-story
class SingleOptionRemoveAdd extends LitElement {
static get properties() {
return {
options: { type: Array },
};
}
constructor() {
super();
this.options = ['Option 1', 'Option 2'];
}
render() {
return html`
${this.options.map(
option => html` ${option} `,
)}
`;
}
addOption() {
this.options.push(`Option ${this.options.length + 1} with a long title`);
this.options = [...this.options];
this.requestUpdate();
}
removeOption() {
if (this.options.length >= 2) {
this.options.pop();
this.options = [...this.options];
this.requestUpdate();
}
}
}
customElements.define('single-option-remove-add', SingleOptionRemoveAdd);
export const singleOptionRemoveAdd = () => {
return html``;
};
```
## Custom Invoker
You can provide a custom invoker using the invoker slot.
LionSelectRich will give it acces to:
- the currently selected option via `.selectedElement`
- LionSelectRich itself, via `.hostElement`
Code of an advanced custom invoker is shown below (this is the code for the
invoker used in [IntlSelectRich](./examples.md)).
The invoker is usually added in the invoker slot of the LionSelectRich subclass.
However, it would also be possible for an application developer to provide the invoker
by putting it in light dom:
```html
...
```
```js
import { LionSelectInvoker } from '@lion/ui/select-rich.js';
class IntlSelectInvoker extends LionSelectInvoker {
/**
* 1. Add your own styles
* @configure LitElement
* @enhance LionSelectInvoker
*/
static styles = [
/** see IntlSelectRich listed above */
];
/**
* 2. Take back control of slots (LionSelectInvoker adds slots you most likely don't want)
* @configure SlotMixin
* @override LionSelectInvoker
*/
get slots() {
return {};
}
/**
* 3. Add you custom render function
* @override LionSelectInvoker
*/
render() {
const ctor = /** @type {typeof LionSelectInvoker} */ (this.constructor);
return ctor._mainTemplate(this._templateData);
}
get _templateData() {
return {
data: { selectedElement: this.selectedElement, hostElement: this.hostElement },
};
}
static _mainTemplate(templateData) {
/** see IntlSelectRich listed above */
}
}
```
> This example only works if your option elements don't have ShadowDOM boundaries themselves.
> Cloning deeply only works up until the first shadow boundary.