Skip to content
Snippets Groups Projects
Commit efea2981 authored by felmer's avatar felmer
Browse files

LMS-1486 fixed

SVN: 15543
parent e0a8d893
No related branches found
No related tags found
No related merge requests found
......@@ -215,6 +215,11 @@ public final class CachedResultSetManager<K> implements IResultSetManager<K>, Se
{
ids.addAll(idsOfPresentedColumns);
}
IColumnDefinition<T> sortField = resultConfig.getSortInfo().getSortField();
if (sortField != null)
{
ids.add(sortField.getIdentifier());
}
GridFilters<T> filters = resultConfig.getFilters();
List<GridColumnFilterInfo<T>> filterInfos = filters.tryGetFilterInfos();
if (filterInfos != null)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment