Problem with Lazy Loader and MTable data update

Hello,

I’am using a BeanItemContainer and a lazy list to load some data into a MTable.

[code]
LazyList lazy = new LazyList<>(service::fetchTransactions, service::getTransactionCount, service.PAGE_SIZE);

BeanItemContainer listContainer = new BeanItemContainer(File.class, lazy);

table.setContainerDataSource(listContainer);
[/code]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);                         

31302.png