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.
WriteThroughMode inactive on Table ?
Hello, I 've a small problem using a table to update my container
It seems that the 'writeThrough' mode is inactive in for the table object. I mean it seems to be always 'on'
For example, I configure my Table like this :
myTable_1().setEditable(true);
myTable_1().setWriteThrough(false);
I can edit the fields, but If I cancel the editing, without commiting the change, doing :
myTable_1().discard();
myTable_1().setEditable(false);
The changes are immediatly reflected in my table...
I tried to set the readThrough property to true also (just in case), but nothing change. The datas in the container are always updated whatever the writeThrough mode maybe...