jQuery-Tagit
jQuery-Tagit copied to clipboard
The Jquery Tagit Plugin transforms an html unordered list into a unique tagging plugin.
If I'm typing in a tag, say for instance "oatmeal", and I have [space] set as one of my triggerkeys, if I type the "l" and then hit space really...
Please replace the line ``` if (self.options.allowNewTags) { ``` to ``` if (self.options.allowNewTags && self.currentLabel.length >= this.options.minLength) { ``` to discard tags shorter than defined minLenght value on blur
If input '.tagit-new .tagit-input' has inline styles in will lose it after entering new long tag. The problem is in if (isValidWidthChange) { //input.width(newWidth); input.css('cssText', "width: " + newWidth +...
Hello, I just started using this plugin and noticed that if I pass the initialTags as an option, instead of using an HTML list, they do not show up. Looking...
in case when allowNewTags is set to true, i want the option field added to the select tag to have a blank value. eg <option value="">New Tag</option> How can i...
triggerKeys option does not work properly, and absolutely not usable 1 With this option triggerKeys:['enter', 'tab'] - comma still work for tag completion !!! 2 With this option triggerKeys:['enter', 'tab',...
This occurs if allowNewFlags:true. When you get the complete-list when typing a word, and click on that word, it seems the blur event fires before, so that you don't get...
When a user switch to another form field, the currently typed word is lost.
Hi, I actually need group tag support where a tag would actually map to an list of tags and their corresponding values. Is it possible to do this? I'd be...