[KULRICE-5399] Lookup - Should use SortDefinition and perform default sort Created: 18/Jul/11 Updated: 12/Aug/13 Resolved: 05/Jun/13 |
|
Status: | Closed |
Project: | Kuali Rice Development |
Component/s: | Development, Roadmap |
Affects Version/s: | None |
Fix Version/s: | 2.3.0-m3, 2.3 |
Security Level: | Public (Public: Anyone can view) |
Type: | Task | Priority: | Major |
Reporter: | Jerry Neal (Inactive) | Assignee: | Martin Taylor (Inactive) |
Resolution: | Fixed | Votes: | 0 |
Labels: | None | ||
Remaining Estimate: | 0 minutes | ||
Time Spent: | 45 minutes | ||
Original Estimate: | Not Specified |
Issue Links: |
|
||||||||||||||||
Rice Module: |
KRAD
|
||||||||||||||||
KRAD Feature Area: |
Lookup
|
||||||||||||||||
Application Requirement: |
Rice
|
||||||||||||||||
KAI Review Status: | Not Required | ||||||||||||||||
KTI Review Status: | Not Required | ||||||||||||||||
Include in Release Notes?: |
Yes
|
Description |
Current LookupView has a list of sorting attributes, this actually needs to use the SortDefinition from the data dictionary or have Also, the sort is not being performed at this point. |
Comments |
Comment by Jessica Coltrin (Inactive) [ 08/Nov/11 ] |
double-tagging with 2.0.0-b3 for review. |
Comment by Jeff Domeyer (Inactive) [ 21/Mar/13 ] |
Sorting is mostly working in krad 2.2+ In krad.widget.js for the createTable function you need to clear the default sorting for datatables, otherwise by default they order by the first column in the table. Add this: table.dataTable({ /* Disable initial sort */ "aaSorting": [] }); var oTable = table.dataTable(options); |