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.
Lazy Loader "refreshing" table when data update
Hello,
I'am using a ListContainer and a lazy list to load some data into a MTable.
12345
LazyList <File> lazy = new LazyList<>(service::fetchTransactions, service::getTransactionCount, service.PAGE_SIZE);
ListContainer<File> listContainer = new ListContainer<File>(File.class, lazy);
table.setContainerDataSource(listContainer);
But when i try to update MTable with this code below, lazy loader starts and refresh my table. I already tried refreshRows, markAsDirty, and others, but MTable still doing the same behavior. Can i update MTable and don't call lazyloader update ? Please, really need help on this. Thanks.
table.getItem(itemid).getItemProperty("cStat").setValue(status);
I'am using table.refreshRowCache() and already tried other solutions, like markAsDirtyRecursive, but table still doing this behavior in the middle of list. How can i avoid it?