Domanda

Ho un campo Tag di input e voglio ottenere l'ID dei tags selezionati Quindi ho provato http://jsfiddle.net/u8zj5/19/ ma il mio problema che voglioOttieni l'ID non etichetta o valore da passare in id="show" ma ho fallito.

<input type="text" id="field1" name="field1" value=""/>
<span id="show">show ID here</span>

jQuery(document).ready(function(){
var availableTags = [{"id":"144","label":"Allicelabel","value":"Allice value"}];
jQuery("input#field1").each(function(){
    var target = jQuery(this);
    var currenttags = target.val();
    target.hide()        
          .after("<ul class=\"tags\"><li>"+currenttags+"</li></ul>");
    var instance = target.next();
    instance.tagit({
        tagSource:availableTags,
        tagsChanged:function () {
            var tags = instance.tagit('tags');
            var tagString = [];
            for (var i in tags){
                tagString.push(tags[i].value);
            }
            $("#show").html(tagString.join(','));
        },
        sortable:true,
        triggerKeys: ['enter', 'comma', 'tab']
    });
});
.

});

Chiunque sia usato jQuery tagit (pagina demo) potrebbeAiutami a risolvere questo

È stato utile?

Soluzione

Ho avuto lo stesso problema e io cosa ha fatto è stato modificare tag-it.js. Quando si chiama la funzione Seleziona è necessario inviare il ID attraverso la funzione _addTag

self._addTag(ui.item.label, ui.item.value, ui.item.id);
.

Allora devi solo ottenere l'ID:

_addTag: function(label, value, id) {
    ...
    this._addSelect(label, value, id);
    ...
}
.

E qui APPEND ID su una selezione nascosta

_addSelect: function(label, value, id) {
        var opt = $('<option>').attr({
            'selected':'selected',
            'value':id
        }).text(label);
        this.select.append(opt);
.

Con questo puoi avere, un'etichetta per l'elenco automatico, un valore da mostrare nel tag e il ID su una selezione nascosta.

Altri suggerimenti

Ho avuto lo stesso problema, ma non volevo modificare il comportamento predefinito del plugin.Quindi, invece, ho usato i ganci forniti per aggiungere nuovi behaivia.

var availableTags = [
    {
        label: "myTag",
        value: "myTag",
        id: 1
    },
    //etc...
];
var assignedTags = [];


$('#singleinputfield').tagit( {
                            tagSource: function (request, response) {
                                    //setup the search to search the label
                                    var matcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i");
                                    response($.grep(availableTags, function (value) {
                                        return matcher.test(value.label);
                                    }));
                            },
                            beforeTagAdded: function(event, ui){
//get id for that tag and signal if it was in the tagSource list
                                var id, result = false;
                                $.each(availableTags, function(){
                                    if(ui.tagLabel === this.label){
                                        result = true;
                                        id=this.id;
                                        return false;
                                    }
                                });
                                if(result){
//put id in the list of ids we are using
                                    assignedTags.push(id);
                                }
                                return result;
                            },
                            afterTagAdded: function(event, ui){
//replace the values in the single input field with the assigned ids
                                    $('#singleinputfield').val(assignedTags.join(','));
                            },
                            afterTagRemoved: function(event, ui){
                                $('#singleinputfield').val(assignedTags.join(','));
                            },
                            beforeTagRemoved: function(event, ui){
                                var id;
//get the id for the removed tag and signal if it was in the tagSource list
                                $.each(availableTags, function(){
                                    if(ui.tagLabel === this.label){
                                        result = true;
                                        id = this.id;
                                        return false;
                                    }
                                });
                                if(result){
//remove the unassigned tag's id from our list
                                    assignedTags = $.grep(assignedTags, function(el){
                                        return el != id;
                                    });
                                }
                            }
                        });
.

Utilizzare un altro plugin come Select2.Ha effettivamente il supporto per questo.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top