Click Framework  History | Log In     View a printable version of the current page. Get help!  
Issue Details (XML | Word)

Key: CLK-372
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Malcolm Edgar
Reporter: Lena Pammer
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Click

PropertySelect ordering issue

Created: 28/May/08 12:45 PM   Updated: 28/May/08 04:07 PM
Component/s: core
Affects Version/s: 1.5 M1
Fix Version/s: 1.5 M2


 Description  « Hide
If a PropertySelect is assigned a select query with ordering, it will still apply ordering by option label as well, which may lead to duplicate columns in the ORDER BY clause.

PropertySelect.loadOptionList():
...
            if (getSelectQuery() != null) {
                SelectQuery query = getSelectQuery();

                if (getOrdering() != null && !orderingApplied) {
                    query.addOrdering(getOrdering());
                    orderingApplied = true;

                } else if (getOptionLabel() != null && !orderingApplied) {
                    query.addOrdering(getOptionLabel(), true);
                    orderingApplied = true;
                }
...

 All   Comments   Change History      Sort Order:
There are no comments yet on this issue.