Delete measurement
This commit is contained in:
parent
482bfddf12
commit
34aa59caf3
3 changed files with 10 additions and 3 deletions
|
@ -28,5 +28,9 @@ export default Ember.Component.extend({
|
|||
}
|
||||
},
|
||||
|
||||
delete: function() {
|
||||
this.get('row').destroyRecord();
|
||||
}
|
||||
|
||||
},
|
||||
});
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
{{#if canEdit}}
|
||||
<td>
|
||||
{{#if rowChanged}}
|
||||
<button class="button-red smaller" {{action 'save'}}>
|
||||
<button class="button-green smaller" {{action 'save'}}>
|
||||
Save
|
||||
</button>
|
||||
{{else}}
|
||||
|
@ -44,6 +44,9 @@
|
|||
<button class="button-gray smaller" {{action 'edit'}}>
|
||||
Edit
|
||||
</button>
|
||||
<button class="button-red smaller" {{action 'delete'}}>
|
||||
Delete
|
||||
</button>
|
||||
</td>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
{{#if canEdit}}
|
||||
<col span="1" style="width:40%">
|
||||
<col span="1" style="width:20%">
|
||||
<col span="1" style="width:30%">
|
||||
<col span="1" style="width:10%">
|
||||
<col span="1" style="width:20%">
|
||||
<col span="1" style="width:20%">
|
||||
{{else}}
|
||||
<col span="1" style="width:40%">
|
||||
<col span="1" style="width:30%">
|
||||
|
|
Reference in a new issue