Select2 dropdown allow new values by user when user types
Asked Answered
M

3

6

The select2 component can be configured to accept new values, as ask in Select2 dropdown but allow new values by user?

And you can see it at: http://jsfiddle.net/pHSdP/646/ the code is as below:

$("#tags").select2({
    createSearchChoice: function (term, data) {
        if ($(data).filter(function () {
            return this.text.localeCompare(term) === 0;
        }).length === 0) {
            return {
                id: term,
                text: term
            };
        }
    },
    multiple: false,
    data: [{
        id: 0,
        text: 'story'
    }, {
        id: 1,
        text: 'bug'
    }, {
        id: 2,
        text: 'task'
    }]
});

The problem is that the new value is only added to the list if you enter new value and press enter, or press tab.

Is it possible to set the select2 component to accept this new value when use types and leave the select2. (Just as normal html input tag which keeps the value which you are typing when you leave it by clicking some where on the screen)

I found that the select2 has select2-blur event but I don't find a way to get this new value and add it to list?!

Mitch answered 2/9, 2014 at 5:34 Comment(2)
Adding attribute selectOnBlur: true, seems to work for meHaemoid
It worked! Please see it at: jsfiddle.net/pHSdP/647 Send the answer so I can mark it as correct!Mitch
H
11

Adding attribute selectOnBlur: true, seems to work for me.

Edit: glad it worked for you as well!

Haemoid answered 2/9, 2014 at 5:54 Comment(0)
C
5

I am using Select2 4.0.3 and had to add two options:

tags: true,
selectOnBlur: true,

This worked for me

Cortisol answered 11/10, 2016 at 8:45 Comment(1)
For v4, it looks like selectOnBlur was changed to selectOnCloseTews
H
0

And to be able to submit multiple new choices together with the existing ones:

select2({tags: true, selectOnBlur: true, multiple: true})
Hydroxylamine answered 4/12, 2017 at 12:51 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.