Struts 2 自动完成器无法作为下拉菜单使用

Struts 2 autocompleter not working as dropdown

我有一个 JSP 页面,我在其中使用了 sx:autocompleter。它正在工作,但在文本框中键入时,建议不会出现在下拉列表中,它们会在完成单词时出现。像这样

这里有什么问题?

改用sj:autocompleter

The Autocompleter widget renders a HTML input or select box with.

<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<html>
  <head>
    <sj:head jqueryui="true"/>
  </head>
  <body>
    <sj:autocompleter
            id="customers"
            name="echo"
            list="%{customers}"
            listValue="name"
            listKey="id"
            selectBox="true"
    />
  </body>
</html>