eli = delegator.findListIteratorByCondition(dve, cond, null, fieldsToSelect, orderBy, findOpts);
orderCount = eli.getResultsSizeAfterPartialList();
// get the partial list for this page
eli.beforeFirst();
if (orderCount > viewSize.intValue()) {
orderList = eli.getPartialList(lowIndex, viewSize.intValue());
} else if (orderCount > 0) {
orderList = eli.getCompleteList();
}