> 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/
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