Re: AutoCompleter doesn't work good in IE7

2007-06-22 Thread Musachy Barroso
My bad, I didn't noticed it the first time around. I always forget that IE doesn't like that trailing comma, do this: [ <#list vars as var> ["${var}"] <#if var_has_next>, ] musachy On 6/22/07, Felipe Rodrigues <[EMAIL PROTECTED]> wrote: I found it. :-)) the problem was in my

Re: AutoCompleter doesn't work good in IE7

2007-06-22 Thread Felipe Rodrigues
I found it. :-)) the problem was in my template. The comma in the end of jSon return was crasshing my list. So I fixed only changin to that: [ <#list vars as var> ["${var}"], [""] ] Thanks for your help. Felipe Felipe Rodrigues wrote: > > A strange thing is that ShowCase is working

Re: AutoCompleter doesn't work good in IE7

2007-06-22 Thread Felipe Rodrigues
A strange thing is that ShowCase is working on IE7. Maybe the problem is in my template? [ <#list vars as var> ["${var}", "${var}"], ] How will be this comma in my last line? How could I remove the last comma? Thanks, Felipe Musachy Barroso wrote: > > > > musachy > //I have to

Re: AutoCompleter doesn't work good in IE7

2007-06-22 Thread Musachy Barroso
musachy //I have to install IE 7 and test it, but I've been pushing that :) On 6/22/07, Felipe Rodrigues <[EMAIL PROTECTED]> wrote: debug-true worked. But the message is not a big thing., at least for me. Doesn't say much. FATAL exception raised: [object Error] FATAL exception raised: [obje

Re: AutoCompleter doesn't work good in IE7

2007-06-22 Thread Felipe Rodrigues
debug-true worked. But the message is not a big thing., at least for me. Doesn't say much. FATAL exception raised: [object Error] FATAL exception raised: [object Error] FATAL exception raised: [object Error] FATAL exception raised: [object Error] But now I've removed loadOnTextChange, and the er

Re: AutoCompleter doesn't work good in IE7

2007-06-22 Thread Musachy Barroso
That's what that attribute is for, can you enable logging on head (debug="true") and submit any logged error, or javascript errors? The ajax tags still need to be tested on IE 7. musachy On 6/22/07, Felipe Rodrigues <[EMAIL PROTECTED]> wrote: Well, Regarding that ShowCase is working on IE7,

Re: AutoCompleter doesn't work good in IE7

2007-06-22 Thread Felipe Rodrigues
Well, Regarding that ShowCase is working on IE7, I suppose the issue is on loadOnTextChange. I'm using that because the list is really big, and I can't bring it in one time. About 35000 records comming from Database. I would like to wait for 2 chars before make the select in Database. How could

AutoCompleter doesn't work good in IE7

2007-06-22 Thread Felipe Rodrigues
Hi Guys, I have an autocompleter tag in my app, but it isn't working good in IE7. In FF it is doing good. The problem is when I keep typing, there are some options that it doesn't retrieve. I little strange and hard to explain. I'm generating the JSON using a freemarker template, like this: [ <#