I'm working with struts 2 and jquery plugin.
I have a jsp where I have defined two elements, a select and an autocompleter. I need to filter the products selected from the provider previously selected:
<s:form id='myForm'>
<s:select list="providers" value="provider.id" listKey="id" name="provider.id"/>
<sj:autocompleter
id="productId"
name="productDescription"
value="%{productDescription}"
listenTopics="providerChanged"
href="%{url_products}"
formIds="myForm"
/>
The problem is that the autocompleter does not submit the latest selected values in the sj:select while typing in it. So when url_products is called, an old value for the provider.id is sent to the action.
Plese note that I added formIds in the autocompleter but does not resolve the problem.
Any ideas???