Stefan.27
(Stefan Uebe)
December 9, 2021, 9:56am
1
Anyone having issues with Vaadin 22. Update your webapp.config.js to this:
const merge = require('webpack-merge');
const flowDefaults = require('./webpack.generated.js');
const mergedConfig = merge(flowDefaults);
mergedConfig.resolve.alias['@vaadin/vaadin-combo-box/src/vaadin-combo-box-placeholder.js']
= '@vaadin/combo-box/src/vaadin-combo-box-placeholder.js';
module.exports = mergedConfig;
thomas.k
(Thomas Kiesl)
December 9, 2021, 5:37pm
2
Hello Stefan. Unfortunately this is not enough. The component is shown, but it is not possible to select an item. You find some details in https://github.com/gatanaso/multiselect-combo-box-flow/issues/94
Tori
(Tori S)
December 10, 2021, 7:15pm
3
Is there anything in the roadmap that might bring Multiselect Combo Box over as an official component in the future? From the discussion over the years - and especially recently with it breaking with Vaadin 22 - this add-on is clearly important for users.
Goran32
(Goran Atanasovski)
February 13, 2022, 11:25am
4
Hi Tori,
Thanks to help from Serhii, the component is now also compatible with Vaadin 22+.
You can give it a try by updating to the latest 4.x.x version, i.e.
<dependency>
<groupId>org.vaadin.gatanaso</groupId>
<artifactId>multiselect-combo-box-flow</artifactId>
<version>4.0.0-rc2</version>
</dependency>
BR