You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get this wrapperBox array list with different values based on a combobox value. The problem that I've now is, though wrapperBox array list gets new values, the listing is not getting updated/refreshed. It keeps showing same old data.
List<PropertyBox> list = FlowUtilsWrapper.activityLog(mf, lastNHours.getValue(), activityLogLogLevel.getValue());
if (!list.isEmpty()) {
// wrapperBox.clear();
wrapperBox.addAll(list);
// wrapperBox = new ArrayList<>(list);
// MyUtils.write(wrapperBox);
// dataProvider.addDataProviderListener(dataChangeEvent -> dataChangeEvent.getSource().refreshAll());
activityLogListing.refresh();
}
The text was updated successfully, but these errors were encountered:
My code is
and the Listing is
I get this wrapperBox array list with different values based on a combobox value. The problem that I've now is, though wrapperBox array list gets new values, the listing is not getting updated/refreshed. It keeps showing same old data.
The text was updated successfully, but these errors were encountered: