1

I have inserted multiple values into one textbox but the data was not inserted into the table. How to solve this problem?

<input id="txtlocName" placeholder="Location Name" type="text class="form-control">

$('#txtlocName').selectize({
       delimiter: ',',`
       persist: false,
       create: function (input) {
            return {
                   value: input,
                    text: input
            }
       }
});

1 Answer 1

2

check for adding dependencies of this jQuery plugin correctly:

look at one of the examples in the repository examples link. it is depended on jquery.js, selectize.js,index.js files and stylesheet.css files

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.