dmsAutoComplete v1.1 - ChangeLog

Recently I published an updated version of my auto-complete (Google suggest) script compatible with IE and FireFox and based on PHP/AJAX.

After publishing version 1.0, I had some feedback from people who downloaded an tested it, so now I decided to correct some of the bugs that were found, and make a few improvements also. So now I’m going to publish version 1.1, check out some of the changes I made.

FIX: Pressing TAB/ENTER with nothing selected returned an error message Always when TAB/ENTER was pressed without any list item selected an error message was returned because the script couldn’t find the value it expected to find, this issue was resolved by adding a flag that made the script ignore this command in this case, causing it to just hide the div.

if (me.highlighted.id != undefined){ me.acChoose(me.highlighted.id); }

CSS: FireFox showed no linebreaks Who tried out my script in FireFox noticed that sometimes the list appeared on a single line, with no line breaks between the items, a simple change in the CSS style of the LI element resolved the problem

#acDiv UL LI{ display:block;}

FEATURE: Adding multiple auto-completes in a single page Due to the way I was referencing the AC object in the script it was impossible to change the name of the variable that received the object. So adding more than one was an impossible mission. Adapting the reference I made it possible to add multiple scripts, as in the example:

var AC = new dmsAutoComplete('string','acDiv'); AC.chooseFunc = function(id,label){ alert(id+'-'+label); }

var AC2 = new dmsAutoComplete('string2','acDiv2'); AC2.chooseFunc = function(id,label){ alert(id+'-'+label); }

Version 1.1 of the script is available in the same link as before:

If you would like to know more about the scripts history look here

If you happen to find the script useful and decide to use it in your solution please let me know, give me some feedback on the bugs, and let me know how it worked for you.

comments powered by Disqus

Related Posts

IFA 2006 e Telefonia

IFA 2006 e Telefonia

  • September 5, 2006

Acontece esta semana em Berlim na Alemanha a IFA - Maior feira de Eletrônicos para o Consumidor - e as novidades não param de vir.

Read More
php|tek09: Day #3

php|tek09: Day #3

  • May 22, 2009

The beeping alarm begun another exciting day at php|tek09. My usual breakfast buddies were around once again for a great meal to start it out right.

Read More
Palestrando em Mato Grosso do Sul

Palestrando em Mato Grosso do Sul

  • October 22, 2008

A convite de meu amigo Bruno “PorKaria”, estarei participando da XI Semana de Computação da UNIDERP e a 5º Jornada de Computação da UNAES no Mato Grosso do Sul.

Read More