Make Text Editable/ReadOnly Based on Input using Vue Js
up vote
0
down vote
favorite
I am trying to achieve something where in a given input I make the string editable or non editable(readonly) based on the context of the text in vue js.
For example :
I have a text: My Name is $John Doe$
Now my vue js code should iterate the string and the text between $ can be editable.
HTML:
<template>
<textarea cols="10" rows="10" disabled>{{q | makeTextEditableByCondition}}</textarea>
<input type="text" v-model="editText">
</template>
<script>
export default {
data() {
q : "My name is $John Doe$ from NYC,
editText: null,
disabled: true
}
filters:{
makeTextEditableByCondition(text){
let splittedText = text.split("$");
let this.editText = splittedText[1]
splittedText.splice(1,1)
return splittedText.join(" ")
}
</script>
But It's still making the process complicated and I am not achieveing proper output.
Any help will be hightly appreciated
javascript vue.js vuejs2
add a comment |
up vote
0
down vote
favorite
I am trying to achieve something where in a given input I make the string editable or non editable(readonly) based on the context of the text in vue js.
For example :
I have a text: My Name is $John Doe$
Now my vue js code should iterate the string and the text between $ can be editable.
HTML:
<template>
<textarea cols="10" rows="10" disabled>{{q | makeTextEditableByCondition}}</textarea>
<input type="text" v-model="editText">
</template>
<script>
export default {
data() {
q : "My name is $John Doe$ from NYC,
editText: null,
disabled: true
}
filters:{
makeTextEditableByCondition(text){
let splittedText = text.split("$");
let this.editText = splittedText[1]
splittedText.splice(1,1)
return splittedText.join(" ")
}
</script>
But It's still making the process complicated and I am not achieveing proper output.
Any help will be hightly appreciated
javascript vue.js vuejs2
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to achieve something where in a given input I make the string editable or non editable(readonly) based on the context of the text in vue js.
For example :
I have a text: My Name is $John Doe$
Now my vue js code should iterate the string and the text between $ can be editable.
HTML:
<template>
<textarea cols="10" rows="10" disabled>{{q | makeTextEditableByCondition}}</textarea>
<input type="text" v-model="editText">
</template>
<script>
export default {
data() {
q : "My name is $John Doe$ from NYC,
editText: null,
disabled: true
}
filters:{
makeTextEditableByCondition(text){
let splittedText = text.split("$");
let this.editText = splittedText[1]
splittedText.splice(1,1)
return splittedText.join(" ")
}
</script>
But It's still making the process complicated and I am not achieveing proper output.
Any help will be hightly appreciated
javascript vue.js vuejs2
I am trying to achieve something where in a given input I make the string editable or non editable(readonly) based on the context of the text in vue js.
For example :
I have a text: My Name is $John Doe$
Now my vue js code should iterate the string and the text between $ can be editable.
HTML:
<template>
<textarea cols="10" rows="10" disabled>{{q | makeTextEditableByCondition}}</textarea>
<input type="text" v-model="editText">
</template>
<script>
export default {
data() {
q : "My name is $John Doe$ from NYC,
editText: null,
disabled: true
}
filters:{
makeTextEditableByCondition(text){
let splittedText = text.split("$");
let this.editText = splittedText[1]
splittedText.splice(1,1)
return splittedText.join(" ")
}
</script>
But It's still making the process complicated and I am not achieveing proper output.
Any help will be hightly appreciated
javascript vue.js vuejs2
javascript vue.js vuejs2
edited Nov 13 at 5:56
asked Nov 13 at 5:20
Ani
235
235
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
many things are not going well :
q : "My name is $John Doe$ from NYC",
Not ending tag for your filters "}"
... Filters should be pure functions and
should not be dependent on this context. If you need this you should
use a computed property or just a method e.g. https://github.com/vuejs/vue/issues/5998
Here a basic solution with computed :
<div id="app">
<textarea cols="10" rows="10" disabled>{{ qComputed }}</textarea>
<input type="text" v-model="editText">
</div>
new Vue({
el: "#app",
data: {
q: "My name is $John Doe$ from NYC",
editText: null,
disabled: true
},
computed: {
qComputed(){
let splittedText = this.q.split('$')
splittedText[1] = this.editText
return splittedText.join` `
}
}
})
https://jsfiddle.net/jupg4ysz/
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
many things are not going well :
q : "My name is $John Doe$ from NYC",
Not ending tag for your filters "}"
... Filters should be pure functions and
should not be dependent on this context. If you need this you should
use a computed property or just a method e.g. https://github.com/vuejs/vue/issues/5998
Here a basic solution with computed :
<div id="app">
<textarea cols="10" rows="10" disabled>{{ qComputed }}</textarea>
<input type="text" v-model="editText">
</div>
new Vue({
el: "#app",
data: {
q: "My name is $John Doe$ from NYC",
editText: null,
disabled: true
},
computed: {
qComputed(){
let splittedText = this.q.split('$')
splittedText[1] = this.editText
return splittedText.join` `
}
}
})
https://jsfiddle.net/jupg4ysz/
add a comment |
up vote
2
down vote
accepted
many things are not going well :
q : "My name is $John Doe$ from NYC",
Not ending tag for your filters "}"
... Filters should be pure functions and
should not be dependent on this context. If you need this you should
use a computed property or just a method e.g. https://github.com/vuejs/vue/issues/5998
Here a basic solution with computed :
<div id="app">
<textarea cols="10" rows="10" disabled>{{ qComputed }}</textarea>
<input type="text" v-model="editText">
</div>
new Vue({
el: "#app",
data: {
q: "My name is $John Doe$ from NYC",
editText: null,
disabled: true
},
computed: {
qComputed(){
let splittedText = this.q.split('$')
splittedText[1] = this.editText
return splittedText.join` `
}
}
})
https://jsfiddle.net/jupg4ysz/
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
many things are not going well :
q : "My name is $John Doe$ from NYC",
Not ending tag for your filters "}"
... Filters should be pure functions and
should not be dependent on this context. If you need this you should
use a computed property or just a method e.g. https://github.com/vuejs/vue/issues/5998
Here a basic solution with computed :
<div id="app">
<textarea cols="10" rows="10" disabled>{{ qComputed }}</textarea>
<input type="text" v-model="editText">
</div>
new Vue({
el: "#app",
data: {
q: "My name is $John Doe$ from NYC",
editText: null,
disabled: true
},
computed: {
qComputed(){
let splittedText = this.q.split('$')
splittedText[1] = this.editText
return splittedText.join` `
}
}
})
https://jsfiddle.net/jupg4ysz/
many things are not going well :
q : "My name is $John Doe$ from NYC",
Not ending tag for your filters "}"
... Filters should be pure functions and
should not be dependent on this context. If you need this you should
use a computed property or just a method e.g. https://github.com/vuejs/vue/issues/5998
Here a basic solution with computed :
<div id="app">
<textarea cols="10" rows="10" disabled>{{ qComputed }}</textarea>
<input type="text" v-model="editText">
</div>
new Vue({
el: "#app",
data: {
q: "My name is $John Doe$ from NYC",
editText: null,
disabled: true
},
computed: {
qComputed(){
let splittedText = this.q.split('$')
splittedText[1] = this.editText
return splittedText.join` `
}
}
})
https://jsfiddle.net/jupg4ysz/
answered Nov 13 at 6:57
Sephyre
394
394
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53274288%2fmake-text-editable-readonly-based-on-input-using-vue-js%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown