characteristics sort order
This commit is contained in:
parent
03b6ea2c3b
commit
963b3591a4
2 changed files with 3 additions and 1 deletions
|
@ -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'),
|
||||||
});
|
});
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Reference in a new issue