Created
June 15, 2016 17:22
-
-
Save bmadigan/7c623adb9344d3f730be63e7344fb507 to your computer and use it in GitHub Desktop.
Sample Inline Save VueJS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<tr v-for="shipment in gridData" id="tr-field-{{ shipment.id }}"> | |
<td style="display:none;"> | |
<input type="hidden" v-model="shipForm[$index].id" value="{{ shipment.id }}"> | |
</td> | |
<td> | |
<input | |
@keyup.enter="saveField(shipForm[$index])" | |
@keyup.tab="saveField(shipForm[$index])" | |
type="text" | |
v-model="shipForm[$index].shipment_number" | |
value="{{ shipment.shipment_number }}" | |
class="form-control" style="width:90px;"> | |
</td> | |
</tr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment