TextboxList 0.3 and jQuery version out!
Moo TextboxList 0.3 changes:
- HTML for bits not showing properly fixed
highlightSelectornot working (due to a typo) fixedGrowingInputmissing pad function added (only affected if you customized growing.mini option)- Improved clicking the whole widget behavior
- Other tiny enhancements / cleanup
Secondly, in the best interest of the JavaScript community, I’ve ported TextboxList to jQuery. The API changes slightly due to the different OOP approach, but all the functionality is intact. Head to jQuery TextboxList project page for more.
Update: 0.2 is out for jQuery. Bugs in autocompleter and IE have been addressed.
Displaying only a subset of the comments. Click here to display all comments.
-
-
Anything? We would love to purchase a license but we have to ensure it will work for us.
-
Hi all,
I’ve come across a few problems that I was hoping someone could help with.
1) There seems to be a rendering issue when using multiple instances of the TextboxList with the AutoComplete plugin enabled. The first instance works fine but all the others have a width of 0, which makes if difficult to select one of the results.
2) When running jQuery in noConflict mode, In was getting error messages. To get around this I changed
GrowingInput.js
Line 12:
from: (function(){
to: (function($){
Line 80:
from: })();
to: })(jQuery);
TextboxList.AutoComplete.js
Line 13:
from: (function(){
to: (function($){
Line 211:
from: })();
to: })(jQuery);
3) When clicking the remove/delete cross, its href is # causing the page to jump.
I can resolve #3 but #1 is a concern. Any idea’s?
Thanks
Gav