2022-09-09 20:41:18 +00:00
|
|
|
<template>
|
2022-12-12 20:26:59 +00:00
|
|
|
<ClientOnly
|
|
|
|
><AppDoc name="CheckboxDemo" :sources="sources" github="checkbox/CheckboxDemo.vue">
|
|
|
|
<h5>Import via Module</h5>
|
|
|
|
<pre v-code.script><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
import Checkbox from 'primevue/checkbox';
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<h5>Import via CDN</h5>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<script src="https://unpkg.com/primevue@^3/core/core.min.js"></script>
|
|
|
|
<script src="https://unpkg.com/primevue@^3/checkbox/checkbox.min.js"></script>
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<h5>Getting Started</h5>
|
|
|
|
<p>Checkbox can either be used in multiple selection with other checkboxes or as a single checkbox to provide a boolean value.</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Checkbox v-model="checked" :binary="true" />
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<h5>Multiple Values</h5>
|
|
|
|
<p>Multiple mode is enabled by default, v-model property refers to an array to bind the selected values.</p>
|
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<Checkbox name="city" value="Chicago" v-model="cities" />
|
|
|
|
<Checkbox name="city" value="Los Angeles" v-model="cities" />
|
|
|
|
<Checkbox name="city" value="New York" v-model="cities" />
|
|
|
|
<Checkbox name="city" value="San Francisco" v-model="cities" />
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<pre v-code.script><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
cities: []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<p>As v-model is two-way binding enabled, prepopulating the model array with values is enough to display the related checkboxes as checked by default.</p>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<h5>Properties</h5>
|
|
|
|
<p>Any valid attribute is passed to the root element implicitly, extended properties are as follows;</p>
|
|
|
|
<div class="doc-tablewrapper">
|
|
|
|
<table class="doc-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Default</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>value</td>
|
|
|
|
<td>any</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Value of the checkbox.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>modelValue</td>
|
|
|
|
<td>any</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Value binding of the checkbox.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>name</td>
|
|
|
|
<td>string</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Name of the input element.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>binary</td>
|
|
|
|
<td>boolean</td>
|
|
|
|
<td>false</td>
|
|
|
|
<td>Allows to select a boolean value instead of multiple values.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>trueValue</td>
|
|
|
|
<td>any</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Value in checked state.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>falseValue</td>
|
|
|
|
<td>any</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Value in unchecked state.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>disabled</td>
|
|
|
|
<td>boolean</td>
|
|
|
|
<td>false</td>
|
|
|
|
<td>When present, it specifies that the element should be disabled.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>readonly</td>
|
|
|
|
<td>boolean</td>
|
|
|
|
<td>false</td>
|
|
|
|
<td>When present, it specifies that an input field is read-only.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>required</td>
|
|
|
|
<td>boolean</td>
|
|
|
|
<td>false</td>
|
|
|
|
<td>When present, it specifies that the element is required.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>tabindex</td>
|
|
|
|
<td>number</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Index of the element in tabbing order.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>inputId</td>
|
|
|
|
<td>string</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Identifier of the underlying input element.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>inputClass</td>
|
|
|
|
<td>any</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Style class of the input field.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>inputStyle</td>
|
|
|
|
<td>any</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Inline style of the input field.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>inputProps</td>
|
|
|
|
<td>object</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Uses to pass all properties of the HTMLInputElement to the focusable input element inside the component.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>aria-label</td>
|
|
|
|
<td>string</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Defines a string value that labels an interactive element.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>aria-labelledby</td>
|
|
|
|
<td>string</td>
|
|
|
|
<td>null</td>
|
|
|
|
<td>Establishes relationships between the component and label(s) where its value should be one or more element IDs.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<h5>Events</h5>
|
|
|
|
<p>In addition to the following events, any other valid events such as focus and blur are passed implicitly.</p>
|
|
|
|
<div class="doc-tablewrapper">
|
|
|
|
<table class="doc-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Parameters</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>click</td>
|
|
|
|
<td>event: Browser event</td>
|
|
|
|
<td>Callback to invoke on value click.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>change</td>
|
|
|
|
<td>event: Browser event</td>
|
|
|
|
<td>Callback to invoke on value change.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>input</td>
|
|
|
|
<td>value: New value</td>
|
|
|
|
<td>Callback to invoke on value change.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<h5>Styling</h5>
|
|
|
|
<p>Following is the list of structural style classes, for theming classes visit <router-link to="/theming">theming</router-link> page.</p>
|
|
|
|
<div class="doc-tablewrapper">
|
|
|
|
<table class="doc-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Element</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>p-checkbox</td>
|
|
|
|
<td>Container element</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-checkbox-box</td>
|
|
|
|
<td>Container of icon.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>p-checkbox-icon</td>
|
|
|
|
<td>Icon element.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<h5>Accessibility</h5>
|
|
|
|
<h6>Screen Reader</h6>
|
|
|
|
<p>
|
|
|
|
Checkbox component uses a hidden native checkbox element internally that is only visible to screen readers. Value to describe the component can either be provided via <i>label</i> tag combined with <i>id</i> prop or using
|
|
|
|
<i>aria-labelledby</i>, <i>aria-label</i> props.
|
|
|
|
</p>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<pre v-code><code>
|
2022-09-09 20:41:18 +00:00
|
|
|
<label for="chkbox1">Remember Me</label>
|
|
|
|
<Checkbox inputId="chkbox1" />
|
|
|
|
|
|
|
|
<span id="chkbox2">Remember Me</span>
|
|
|
|
<Checkbox aria-labelledby="chkbox2" />
|
|
|
|
|
|
|
|
<Checkbox aria-label="Remember Me" />
|
|
|
|
|
|
|
|
</code></pre>
|
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<h6>Keyboard Support</h6>
|
|
|
|
<div class="doc-tablewrapper">
|
|
|
|
<table class="doc-table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Key</th>
|
|
|
|
<th>Function</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td><i>tab</i></td>
|
|
|
|
<td>Moves focus to the checkbox.</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><i>space</i></td>
|
|
|
|
<td>Toggles the checked state.</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2022-09-09 20:41:18 +00:00
|
|
|
|
2022-12-12 20:26:59 +00:00
|
|
|
<h5>Dependencies</h5>
|
|
|
|
<p>None.</p>
|
|
|
|
</AppDoc></ClientOnly
|
|
|
|
>
|
2022-09-09 20:41:18 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
sources: {
|
|
|
|
'options-api': {
|
|
|
|
tabName: 'Options API Source',
|
|
|
|
content: `
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<h5>Basic</h5>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<Checkbox inputId="binary" v-model="checked" :binary="true" />
|
|
|
|
<label for="binary">{{checked}}</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h5>Multiple</h5>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<Checkbox inputId="city1" name="city" value="Chicago" v-model="cities" />
|
|
|
|
<label for="city1">Chicago</label>
|
|
|
|
</div>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<Checkbox inputId="city2" name="city" value="Los Angeles" v-model="cities" />
|
|
|
|
<label for="city2">Los Angeles</label>
|
|
|
|
</div>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<Checkbox inputId="city3" name="city" value="New York" v-model="cities" />
|
|
|
|
<label for="city3">New York</label>
|
|
|
|
</div>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<Checkbox inputId="city4" name="city" value="San Francisco" v-model="cities" />
|
|
|
|
<label for="city4">San Francisco</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h5>Dynamic Values, Preselection, Value Binding and Disabled Option</h5>
|
|
|
|
<div v-for="category of categories" :key="category.key" class="field-checkbox">
|
|
|
|
<Checkbox :inputId="category.key" name="category" :value="category.name" v-model="selectedCategories" :disabled="category.key === 'R'"/>
|
|
|
|
<label :for="category.key">{{category.name}}</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
checked: false,
|
|
|
|
cities: [],
|
|
|
|
categories: [{name: 'Accounting', key: 'A'}, {name: 'Marketing', key: 'M'}, {name: 'Production', key: 'P'}, {name: 'Research', key: 'R'}],
|
|
|
|
selectedCategories: []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.selectedCategories = this.categories.slice(1,3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
<\\/script>`
|
|
|
|
},
|
|
|
|
'composition-api': {
|
|
|
|
tabName: 'Composition API Source',
|
|
|
|
content: `
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<h5>Basic</h5>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<Checkbox inputId="binary" v-model="checked" :binary="true" />
|
|
|
|
<label for="binary">{{checked}}</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h5>Multiple</h5>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<Checkbox inputId="city1" name="city" value="Chicago" v-model="cities" />
|
|
|
|
<label for="city1">Chicago</label>
|
|
|
|
</div>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<Checkbox inputId="city2" name="city" value="Los Angeles" v-model="cities" />
|
|
|
|
<label for="city2">Los Angeles</label>
|
|
|
|
</div>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<Checkbox inputId="city3" name="city" value="New York" v-model="cities" />
|
|
|
|
<label for="city3">New York</label>
|
|
|
|
</div>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<Checkbox inputId="city4" name="city" value="San Francisco" v-model="cities" />
|
|
|
|
<label for="city4">San Francisco</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h5>Dynamic Values, Preselection, Value Binding and Disabled Option</h5>
|
|
|
|
<div v-for="category of categories" :key="category.key" class="field-checkbox">
|
|
|
|
<Checkbox :inputId="category.key" name="category" :value="category.name" v-model="selectedCategories" :disabled="category.key === 'R'"/>
|
|
|
|
<label :for="category.key">{{category.name}}</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { ref } from 'vue';
|
|
|
|
export default {
|
|
|
|
setup() {
|
|
|
|
const checked = ref(false);
|
|
|
|
const cities = ref([]);
|
|
|
|
const categories = ref([
|
|
|
|
{name: 'Accounting', key: 'A'},
|
|
|
|
{name: 'Marketing', key: 'M'},
|
|
|
|
{name: 'Production', key: 'P'},
|
|
|
|
{name: 'Research', key: 'R'}
|
|
|
|
]);
|
|
|
|
const selectedCategories = ref(categories.value.slice(1,3));
|
|
|
|
|
|
|
|
return { checked, cities, categories, selectedCategories }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
<\\/script>`
|
|
|
|
},
|
|
|
|
'browser-source': {
|
|
|
|
tabName: 'Browser Source',
|
|
|
|
imports: `<script src="https://unpkg.com/primevue@^3/checkbox/checkbox.min.js"><\\/script>`,
|
|
|
|
content: `<div id="app">
|
|
|
|
<h5>Basic</h5>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<p-checkbox inputId="binary" v-model="checked" :binary="true"></p-checkbox>
|
|
|
|
<label for="binary">{{checked}}</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h5>Multiple</h5>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<p-checkbox inputId="city1" name="city" value="Chicago" v-model="cities"></p-checkbox>
|
|
|
|
<label for="city1">Chicago</label>
|
|
|
|
</div>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<p-checkbox inputId="city2" name="city" value="Los Angeles" v-model="cities"></p-checkbox>
|
|
|
|
<label for="city2">Los Angeles</label>
|
|
|
|
</div>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<p-checkbox inputId="city3" name="city" value="New York" v-model="cities"></p-checkbox>
|
|
|
|
<label for="city3">New York</label>
|
|
|
|
</div>
|
|
|
|
<div class="field-checkbox">
|
|
|
|
<p-checkbox inputId="city4" name="city" value="San Francisco" v-model="cities"></p-checkbox>
|
|
|
|
<label for="city4">San Francisco</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h5>Dynamic Values, Preselection, Value Binding and Disabled Option</h5>
|
|
|
|
<div v-for="category of categories" :key="category.key" class="field-checkbox">
|
|
|
|
<p-checkbox :inputId="category.key" name="category" :value="category.name" v-model="selectedCategories" :disabled="category.key === 'R'"></p-checkbox>
|
|
|
|
<label :for="category.key">{{category.name}}</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script type="module">
|
|
|
|
const { createApp, ref } = Vue;
|
|
|
|
|
|
|
|
const App = {
|
|
|
|
setup() {
|
|
|
|
const checked = ref(false);
|
|
|
|
const cities = ref([]);
|
|
|
|
const categories = ref([
|
|
|
|
{name: 'Accounting', key: 'A'},
|
|
|
|
{name: 'Marketing', key: 'M'},
|
|
|
|
{name: 'Production', key: 'P'},
|
|
|
|
{name: 'Research', key: 'R'}
|
|
|
|
]);
|
|
|
|
const selectedCategories = ref(categories.value.slice(1,3));
|
|
|
|
|
|
|
|
return { checked, cities, categories, selectedCategories }
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
"p-checkbox": primevue.checkbox
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
createApp(App).use(primevue.config.default).mount('#app');
|
|
|
|
<\\/script>
|
|
|
|
`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|