2

众所周知,它是一个包含元素javax.swing.JComboBox的下拉选择。E设置时.setEditable(true),我们现在可以将其JComboBox设置JTextField为其他E元素。

对此进行搜索后Google,它向我们返回了JQuery使用的关于此处显示的自动完成的建议。自动完成功能正在处理选择,但问题出在这里,我们需要触发包含 的属性,以在所述的属性上呈现特定模板onChange${remoteFunction}update${remoteFunction}

<g:select  
  id="itemSelectId"
  onChange="${remoteFunction(
    controller:'item', action:'itemSelect',
    update:[success:'updateItemId'],
    params:'\'id=\' + escape(this.value)'"/>
<div id="updateItemId></div>

在链接上<script>提供的我们只是更改#combobox#itemSelectId.

4

1 回答 1

1

看看select2,该库可能会提供您正在寻找的功能。

于 2012-09-19T18:56:48.763 回答