私のjspページには、x、yと呼ばれる2つのstrut2 Jquery autocompleterボックスがあります。x を変更すると、選択した x の値に応じて自動的に y も変更されます。struts dojo タグでは、トピックをリッスンしてリロードしました。しかし、strut2 jquery はリロードできません。
私のコード
<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"
/>