endDateFilter.show();
}
// refresh the table manually, calling refresh() doesn't work here because the listgrid has set the
// autoFetchData flag to true and invalidateCache() doesn't do the fetching as mentioned in the refresh()
// method.
final ListGrid listGrid = getListGrid();
Criteria criteria = getCurrentCriteria();
listGrid.setCriteria(criteria);
listGrid.fetchData(criteria);
listGrid.markForRedraw();
refreshTableInfo();
}