triggerSortListBoxResources();
}
private void triggerSortListBoxResources() {
for (Object child : listBoxResources.getListhead().getChildren()) {
final Listheader hd = (Listheader) child;
if (!"natural".equals(hd.getSortDirection())) {
hd.sort("ascending".equals(hd.getSortDirection()), true);
}
}
}