<p>Hi , Is there any example codes for <strong>CRUD</strong> <strong>operat

Hi , Is there any example codes for CRUD operation for FilterTable. I have have been using v1.0.0.v7 and on each item edit event I had to load the entire table to load the updated items which is inefficient , refresh code -


public void refreshContainer() {
    //get currently selected page 
    int page = this.getCurrentPage();
    // remove all items 
    container.removeAllItems();
    //load updated items 
    addItemsToContainer(); 
    // move table to current page
    this.setCurrentPage(page);        
}


Kindly suggest a way to update a single item