Can I edit table cell inplace without using v-edit-dialog? #15806
Unanswered
princesinghpnjr
asked this question in
General
Replies: 1 comment
-
I am using v-menu with quill text editor as a customised component for table cell editing purposes.
In your customised component TextEditor, define v-menu for the actual text editor |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Can I edit table cell inplace without any popup or using v-edit-dialog ?
<template v-slot:[
item.Amount]="props"> <v-edit-dialog :return-value.sync="props.item.Amount" large persistent @save="save1" @close="close" > <div>{{ props.item.Amount }}</div> <template v-slot:input> <div class="mt-4 text-h6"> <h6>Lender</h6> </div> <v-text-field v-model="props.item.Amount" :rules="[max25chars]" label="Edit" single-line counter autofocus ></v-text-field> </template> </v-edit-dialog> </template>
Beta Was this translation helpful? Give feedback.
All reactions