TableView.setSort(String) doesn't work
--------------------------------------
Key: PIVOT-486
URL: https://issues.apache.org/jira/browse/PIVOT-486
Project: Pivot
Issue Type: Bug
Components: wtk
Affects Versions: 1.5
Reporter: Dirk Moebius
private method TableView.parseSort(String json) has this line:
Dictionary.Pair<String, SortDirection> pair =
new Dictionary.Pair<String,
SortDirection>((String)map.get(COLUMN_NAME_KEY),
SortDirection.valueOf(((String)map.get(SORT_DIRECTION_KEY)).toLowerCase()));
The enum value for SortDirection cannot be found. Must be changed to
toUpperCase().
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.