Dropping select 2 for now
This commit is contained in:
parent
1ee0e0e5ed
commit
d46b3fc48b
2 changed files with 7 additions and 8 deletions
|
@ -53,7 +53,8 @@ export default Component.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
characteristicDidChange: function(value) {
|
characteristicDidChange: function(value) {
|
||||||
this.updateField('characteristic', value);
|
const newCharacteristic = this.get('allCharacteristics').findBy('id', value);
|
||||||
|
this.updateField('characteristic', newCharacteristic);
|
||||||
},
|
},
|
||||||
|
|
||||||
valueDidChange: function(value) {
|
valueDidChange: function(value) {
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
{{#if isEditing}}
|
{{#if isEditing}}
|
||||||
<td></td>
|
<td></td>
|
||||||
<td>
|
<td>
|
||||||
{{
|
<select onchange={{action "characteristicDidChange" value="target.value"}}>
|
||||||
select-2
|
{{#each allCharacteristics as |characteristicChoice|}}
|
||||||
multiple=false
|
<option value={{characteristicChoice.id}} selected={{equal characteristic.id characteristicChoice.id}}>{{characteristicChoice.characteristicName}}</option>
|
||||||
content=allCharacteristics
|
{{/each}}
|
||||||
value=characteristic
|
</select>
|
||||||
optionLabelPath="characteristicName"
|
|
||||||
}}
|
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
{{one-way-input type="text" class="measurement-value" value=value update=(action "valueDidChange")}}
|
{{one-way-input type="text" class="measurement-value" value=value update=(action "valueDidChange")}}
|
||||||
|
|
Reference in a new issue