characteristics sort order

This commit is contained in:
Matthew Dillon 2015-07-07 14:47:06 -08:00
parent 03b6ea2c3b
commit 963b3591a4
2 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,6 @@
import Ember from 'ember'; import Ember from 'ember';
export default Ember.Controller.extend({ export default Ember.Controller.extend({
sortParams: ['characteristicType.characteristicTypeName', 'characteristicName'], sortParams: ['characteristicType.characteristicTypeName', 'sortOrder'],
sortedCharacteristics: Ember.computed.sort('characteristics', 'sortParams'), sortedCharacteristics: Ember.computed.sort('characteristics', 'sortParams'),
}); });

View file

@ -6,6 +6,7 @@
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Type</th> <th>Type</th>
<th>Sort Order</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -13,6 +14,7 @@
<tr> <tr>
<td>{{row.characteristicName}}</td> <td>{{row.characteristicName}}</td>
<td>{{row.characteristicType.characteristicTypeName}}</td> <td>{{row.characteristicType.characteristicTypeName}}</td>
<td>{{row.sortOrder}}</td>
</tr> </tr>
{{/each}} {{/each}}
</tbody> </tbody>