Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Broken MultiSelect mode in tree table
Hi,
I am using 6.7.5. I am using a tree table and I'd like to use a mode where one needs to hold CTRL to select multiple elements (or shit to select a range). According to the doc it is the default multiselect mode.
Here's my code
// Enable selection
treeTable.setSelectable(true);
treeTable.setMultiSelect(true);
treeTable.setMultiSelectMode(AbstractSelect.MultiSelectMode.DEFAULT);
The result is I get the Simple select mode. If I change this to SIMPLE (instead of default), I just get the same behavior. Could this be a bug?
Actually, the sample itself reveals this "issue" (if this one) http://demo.vaadin.com/sampler#TreeTableSelection
Actually it's a bug with Chrome. It works fine with Firefox. I have created http://dev.vaadin.com/ticket/8403
And for the record, this was already fixed in #8240 which will be available as from 6.7.6. Upgrading to Chrome 18 would fix it as well (without Vaadin 6.7.6)
Thanks!