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










share|improve this question




























    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










    share|improve this question


























      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










      share|improve this question















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 13 at 5:56

























      asked Nov 13 at 5:20









      Ani

      235




      235
























          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/






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            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

























            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/






            share|improve this answer

























              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/






              share|improve this answer























                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/






                share|improve this answer












                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/







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 13 at 6:57









                Sephyre

                394




                394






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                    ComboBox Display Member on multiple fields

                    Is it possible to collect Nectar points via Trainline?