Re: Autocomplete providecompletions + extra parameter

2008-04-29 Thread Josh Canfield
> Is it possible to add an extra context parameter to the providecompletions > method? You can change the content that is sent for the list by extending the Autocomplete mixin and override the generateResponseMarkup method. http://tapestry.apache.org/tapestry5/apidocs/org/apache/tapestry/corelib/

Autocomplete providecompletions + extra parameter

2008-04-29 Thread Leon Derks
Hello Is it possible to add an extra context parameter to the providecompletions method? For example like this: List onProvideCompletionsFromAccountName(Long categoryId, String partial) { List matches = productDAO.findByPartialNameInCategory(partial, categoryId); ... } How