Data Browser - Viewing Site  Sector 23 Code Bank Logged in as:  Guest  




           


Angular ui grid grouping with sorting creating duplicates rows
Grouping an angular UI grid and then manually sorting on another column by clicking the column header created duplicate rows.
The fix was that on the grouped column, you must initialize the sort and it must match the group.

columnDefs: [
{
// set BOTH
grouping: { groupPriority: 0 },
sort:{priority:0, direction:'asc'}
...

Created By: amos 8/22/2018 1:54:48 PM