我有一个 jsp 页面,我在 strust2 jquery Grid 中显示数据。在网格列中,有基于选择类型(下拉选择)的搜索工具。
<sjg:gridColumn name="subjectId" title="Subject Name" editable="true" align="center" search="true" searchtype="select"
searchoptions="{dataUrl:'%{selecturl}'}" edittype="select" editoptions="{dataUrl:'%{selecturl}'}" />
.我的下拉列表在我的课堂上很好,并且正确显示在它的位置。
我想要的是一个类似这样的标题值(----select here--),然后是从我的类中填充的所有值。
例如。我知道如何在 struts2 中执行此操作(下面的代码),但我在 struts2 jquery 网格列中不知道这一点。现在我只能显示没有标题键和标题值的所有列表。
<s:select label="What's your favor search engine"
headerKey="-1" headerValue="----Select here----"
list="selecturl"
name="name" />
请帮助我解决这个问题。