textboxlist

Is there a jQuery TextboxList ?

Hi folks, Facebook have a great TextboxList component. This has just been ported (from scratch) into MooTools. Does anyone know if this exists in jQuery? edit: ahh! autocomplete was the keyword i was missing. cheers! ...

Using TextboxList events and callbacks

Has anyone gotten callbacks working with Guillermo Rauch's TextboxList Autocomplete? I've tried multiple ways to bind and multiple events (e.g. hover) - nothing seems to register. $('#entSearch').textboxlist({unique: true, plugins: { autocomplete: { minLength: 3, queryRemote: true, ...

how to disable textboxlist from adding tags that are not in autocomplete list

Hi, i'm using jquery textboxlist plugin with autocomplete and want to: allow the user to type in something, and if it shows up in the autocomplete list, then the users can select it and a tag will be added to the box. if what the user typed is not in the autocomplete (suggestion) list, then the input should be ignored. right now whe...

How can I use the addonblur setting on the Mootools TextBoxList?

I am using Mootools TextBoxList for a project. I was attempting to set the addonblur option so new tags entered would automatically be added to the list when the text box looses focus. However, I am unable to determine the correct syntax for how to set this. I read the documentation several times and tried different things, but couldn’t...

Jquery, Opera. How to stop submit?

Hello, i'm using this control http://devthought.com/projects/mootools/textboxlist/ It's using JQuery Code: bit.toElement().keydown(navigate); var navigate = function (ev) { var evStop = function () { ev.stopPropagation(); ev.preventDefault(); }; switch (ev.which) { case 13: evStop(); ...

How to hide the suggestions from the TexboxList (jQuery) plugin?

Hello guys, I'm trying to do something with the TextboxList (plugin) (jQuery) and I just can't get it to work. I have two "TextboxList" in my page one next to the other. When I'm in the first "textbox" and I press the "enter" key to select the item, I want to set the focus in the next "textbox". I managed to do that with the code below:...