-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcheckbox-validation-demos.html
39 lines (37 loc) · 1.43 KB
/
checkbox-validation-demos.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<dom-module id="checkbox-validation-demos">
<template>
<style include="vaadin-component-demo-shared-styles">
:host {
display: block;
}
</style>
<h3>Required</h3>
<vaadin-demo-snippet id="checkbox-required" when-defined="vaadin-checkbox-group">
<template preserve-content>
<vaadin-checkbox-group label="Required" required error-message="Please choose one option" theme="vertical">
<vaadin-checkbox value="1">Option one</vaadin-checkbox>
<vaadin-checkbox value="2">Option two</vaadin-checkbox>
<vaadin-checkbox value="3">Option three</vaadin-checkbox>
</vaadin-checkbox-group>
<vaadin-button>Submit</vaadin-button>
<script>
window.addDemoReadyListener('#checkbox-required', function(document) {
const submit = document.querySelector('vaadin-button');
const checkboxGroup = document.querySelector('vaadin-checkbox-group');
submit.addEventListener('click', function(event) {
checkboxGroup.validate();
});
});
</script>
</template>
</vaadin-demo-snippet>
</template>
<script>
class CheckboxValidationDemos extends DemoReadyEventEmitter(CheckboxDemo(Polymer.Element)) {
static get is() {
return 'checkbox-validation-demos';
}
}
customElements.define(CheckboxValidationDemos.is, CheckboxValidationDemos);
</script>
</dom-module>