I have the two strut2 Jquery autocompleter box called x,y in my jsp page. If i change x , then automatically y also should change according to selected value of x.In struts dojo tags i used listen topics to reload . But strut2 jquery not able to reload .
my code
<sj:autocompleter
id="mapNameList"
name="map_name"
list="%{mapNameList}"
selectBox="true"
selectBoxIcon="true"
onChangeTopics="autocompleteChange"
onFocusTopics="autocompleteFocus"
onSelectTopics="autocompleteSelect"
/>
<label for="map_type">MapType: </label>
<sj:autocompleter
id="mapTypeList"
name="map_type"
list="%{mapTypeList}"
selectBox="true"
selectBoxIcon="true"
onChangeTopics="autocompleteChange"
onFocusTopics="autocompleteFocus"
onSelectTopics="autocompleteSelect"
/>
If you prefer json autocompleter to list one you can do :
define the onSelectTopics of the first on to a specific value like
define for the second
create a function like :
where setJQueryAutocompleterURL is another function
Then you will have the extraparameter to get as a param of your json call to filter the result.