New to Kendo UI for Vue? Start a free 30-day trial
Creating a Custom Checkbox Group in Kendo UI for Vue
Updated on Oct 31, 2025
Environment
| Product | Kendo UI for Vue Checkbox |
| Version | Current |
Description
I want to implement a checkbox group in Kendo UI for Vue. However, there is no built-in CheckboxGroup component available. How can I create one to iterate over an array and configure checkboxes dynamically?
This knowledge base article also answers the following questions:
- How to create a custom CheckboxGroup in Vue?
- How to configure multiple checkboxes dynamically in Kendo UI for Vue?
- How to implement custom logic for a checkbox group?
Solution
To implement a custom CheckboxGroup in Kendo UI for Vue:
- Define an array containing the values for the checkboxes.
- Use the
mapfunction to iterate over the array and dynamically render a Kendo UI for Vue Checkbox for each element. - Add custom logic for mass selection or disabling checkboxes, based on your requirements.
Below is an example implementation:
Change Theme
Theme
Loading ...
You can extend this implementation according to your specific requirements.