Hi Joshua,

I tried your sample, it does not work in IE/Firefox/Safari, maybe I miss
something, I can see calls to the server :
http://localhost:8080/myapp/testajax.textfield:autocomplete? here is what I
did:

 public List<String> onProvideCompletionsFromClientName(String input)
    {
        List<String> result = new ArrayList<String>();
        result.add("test1");
        result.add("test2");
        System.out.println("Inside Autocompletion Event Handler"); 
        return result;
    }

 <t:form>
        <input t:type="TextField" t:value="prop:clientName"
t:mixins="autocomplete"  /> 
    </t:form>  



Joshua Jackson-3 wrote:
> 
> Dear all,
> 
> I would like to recall that Autocompleter works on IE. Has anyone
> tried it on Firefox or any other browser?
> 
> Thanks in advance.
> 
> On 12/28/07, Joshua Jackson <[EMAIL PROTECTED]> wrote:
>> Dear all,
>>
>> I already try to follow what's written on the document regarding how
>> to use Autocomplete component, but still can not get it working.
>>
>> Here's what I've done:
>> Template:
>> <input t:type="TextField" t:value="prop:clientName"
>> t:mixins="autocomplete" />
>>
>> Page:
>>    private String clientName;
>>
>>    String[] onProvideCompletionsFromClientName(String input)
>>    {
>>        logger.info("Inside Autocompletion Event Handler");
>>        return null;
>>    }
>>
>> Have I missed on something here?
>>
>> Thanks in advance.
> 
> -- 
> I'm a coder not a drag-n-dropper
> 
> Blog: http://joshuajava.wordpress.com/
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/T5%3A-How-to-use-the-Autocomplete-component--tp14522247p14524057.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to