[//]: # 'AUTO INSERT HEADER PREPUBLISH'
# Fieldset Examples
```js script
import { html } from '@lion/core';
import '@lion/input/lion-input.js';
import { localize } from '@lion/localize';
import { MinLength, Validator, Required } from '@lion/form-core';
import { loadDefaultFeedbackMessages } from '@lion/validate-messages';
import '@lion/fieldset/lion-fieldset.js';
export default {
title: 'Forms/Fieldset/Examples',
};
```
## With Data
The fieldset's modelValue is an `Object` containing properties where the key is the `name` attribute of the field,
and the value is the `modelValue` of the field.
```js preview-story
export const data = () => html`
`;
```
## Disabled
Disabling a fieldset disables all its child fields.
When enabling a fieldset, fields that have disabled explicitly set will stay disabled.
```js preview-story
export const disabled = () => {
function toggleDisabled() {
const fieldset = document.querySelector('#fieldset');
fieldset.disabled = !fieldset.disabled;
}
return html`
`;
};
```
## Nesting fieldsets
Fieldsets can also be nested. The level of nesting will correspond one to one with the `modelValue` object.
```js preview-story
export const nestingFieldsets = () => html`
Personal data
`;
```
## Validation
You can create validators that work on a fieldset level.
Below, we mimic a `required` validator, but on the fieldset.
Try it by typing something in the input, then removing it.
```js preview-story
export const validation = () => {
const DemoValidator = class extends Validator {
static get validatorName() {
return 'DemoValidator';
}
execute(value) {
if (value && value.input1) {
return false; // el.hasError = true
}
return true;
}
static async getMessage() {
return '[Fieldset Error] Demo error message';
}
};
return html`
`;
};
```
### Validating multiple inputs in a fieldset
You can have your fieldset validator take into consideration multiple fields.
```js preview-story
export const validatingMultipleFields = () => {
const IsCatsAndDogs = class extends Validator {
static get validatorName() {
return 'IsCatsAndDogs';
}
execute(value) {
return !(value.input1 === 'cats' && value.input2 === 'dogs');
}
static async getMessage() {
return '[Fieldset Error] Input 1 needs to be "cats" and Input 2 needs to be "dogs"';
}
};
return html`
`;
};
```
Alternatively you can also let the fieldset validator be dependent on the error states of its child fields.
Simply loop over the formElements inside your Validator's `execute` method:
```js
this.formElements.some(el => el.hasFeedbackFor.includes('error'));
```
### Validating multiple fieldsets
You can have your fieldset validator take into accounts multiple nested fieldsets.
```js preview-story
export const validatingMultipleFieldsets = () => {
const IsCatsDogs = class extends Validator {
static get validatorName() {
return 'IsCatsAndDogs';
}
execute(value) {
if (
value.inner1 &&
value.inner1.input1 === 'cats' &&
value.inner2 &&
value.inner2.input1 === 'dogs'
) {
return false;
}
return true;
}
static async getMessage() {
return 'There is a problem with one of your fieldsets';
}
};
return html`
`;
};
```