diff --git a/app/pods/protected/strains/show/measurements-table-row/template.hbs b/app/pods/protected/strains/show/measurements-table-row/template.hbs
index 1c6cc07..a26fef4 100644
--- a/app/pods/protected/strains/show/measurements-table-row/template.hbs
+++ b/app/pods/protected/strains/show/measurements-table-row/template.hbs
@@ -1,4 +1,5 @@
{{#if isEditing}}
+
|
{{
select-2
@@ -28,6 +29,9 @@
|
{{/if}}
{{else}}
+
+ {{{row.characteristic.characteristicTypeName}}}
+ |
{{#link-to 'protected.characteristics.show' row.characteristic.id}}
{{{row.characteristic.characteristicName}}}
diff --git a/app/pods/protected/strains/show/measurements-table/component.js b/app/pods/protected/strains/show/measurements-table/component.js
index 8d8e31d..07d94c6 100644
--- a/app/pods/protected/strains/show/measurements-table/component.js
+++ b/app/pods/protected/strains/show/measurements-table/component.js
@@ -12,6 +12,8 @@ export default Ember.Component.extend({
}.on('didInsertElement'),
sortParams: ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName'],
+ sortAsc: true,
+ paramsChanged: false,
sortedMeasurements: Ember.computed.sort('model.measurements', 'sortParams'),
actions: {
@@ -24,6 +26,22 @@ export default Ember.Component.extend({
});
this.get('model.measurements').addObject(m);
},
+
+ changeSortParam: function(col) {
+ let sort = this.get('sortAsc') ? 'asc' : 'desc';
+ let sortCol = `${col}:${sort}`;
+ this.set('sortParams', [sortCol]);
+ this.set('paramsChanged', true);
+ this.toggleProperty('sortAsc');
+ return false;
+ },
+
+ resetSortParam: function() {
+ this.set('sortParams', ['characteristic.characteristicTypeName', 'characteristic.sortOrder', 'characteristic.characteristicName']);
+ this.set('paramsChanged', false);
+ this.set('sortAsc', true);
+ return false;
+ },
},
});
diff --git a/app/pods/protected/strains/show/measurements-table/template.hbs b/app/pods/protected/strains/show/measurements-table/template.hbs
index 2f30a9e..3f3c469 100644
--- a/app/pods/protected/strains/show/measurements-table/template.hbs
+++ b/app/pods/protected/strains/show/measurements-table/template.hbs
@@ -7,24 +7,32 @@
{{/if}}
{{#if measurementsPresent}}
+{{#if paramsChanged}}
+
+{{/if}}
{{#if canEdit}}
-
+
+
{{else}}
-
+
+
{{/if}}
- Characteristic |
- Value |
- Notes |
+ Type |
+ Characteristic |
+ Value |
+ Notes |
{{#if canEdit}}
Edit |
{{/if}}
|