我正在尝试制作自定义编辑页面。我获取对象 ID 并创建对象的实例。但是当我尝试为选择框指定一个值时,该框呈现为多选。我需要它默认为基于孩子的选择,但只能是单选。我已经尝试过 multiple="false" 但我的程序只是忽略了它。
我的对象是一个样本,其中包含与每个样本关联的参数(子项)。我有一个算法可以抓取每个参数并构建每个唯一名称、值和信息的列表。有些样本只有带值的参数,没有信息,所以它们进入一个映射,而有值和信息的样本进入另一个映射。
这是算法和我的行动:
def updateSample = {
def sid = params.sample.id // get the id of the sample object
def sampleInstance = Sample.get(sid)// creates instance
def children = sampleInstance?.sampleParameters
/* ------ gets a list of unique parameter names ------*/
HashMap<String, ArrayList<SampleParameter>> oldMap = new HashMap<String, ArrayList<SampleParameter>>(); // for single parameter options
HashMap<String, HashMap<String, ArrayList<SampleParameter>>> map = new HashMap<String, HashMap<String, ArrayList<SampleParameter>>>(); // for multiple parameter options
for (def result : SampleType.get(sampleInstance.sampleType.id).sampleParameters.sort {it.value}) { // only iterate over assigned sample paramters
if (result.information != null) { // we are working with 3 parameters
if (!map.containsKey(result.name)) { // if map does not already contain the key
map.put(result.name, new HashMap<String, ArrayList<SampleParameter>>()); //add the name and a map to hold the values from the table's information column
}
if (!map.get(result.name).containsKey(result.value)) {
map.get(result.name).put(result.value, new ArrayList<SampleParameter>());
}
map.get(result.name).get(result.value).add(result);
} else {// otherwise we are only working with two parameters
if (!oldMap.containsKey(result.name)) { // if the name does not already exist in oldMap, add it
oldMap.put(result.name, new ArrayList<SampleParameter>()); // holds values
}
oldMap.get(result.name).add(result); //adds value to the list
}
}
/* invokes template and passes a map to be rendered inside of <div id="parameter"> in sample.gsp */
render(template:'updatesample' , model:[sid:sid,sampleInstance:sampleInstance,children:children,
oldMap:oldMap, map:map])
}
如果我不指定值,列表构建得很好。但是当我指定一个值时,正确的值会突出显示,但该框是多选的。
这是我在 gsp 上呈现的模板代码;
<g:each in="${oldMap?.sort()}">
<tr>
<td align="right" valign="top"><b>${it.getKey()}:</b></td>
<td><g:select optionKey="id" optionValue="value" name="sampleParameters" id="parameter" value="${sampleInstance?.sampleParameters}" from='${it.getValue()}' /></td>
</tr>
</g:each>
<g:each var="valueMap" in="${map?.sort()}">
<tr><td align="right" valign="top"><b>${valueMap.getKey()}:</b></td></tr>
<g:each var="infoMap" in="${valueMap?.getValue()?.sort()}">
<tr>
<td align="right" valign="top">${infoMap.getKey()}:</td>
<td><g:select multiple ="false" noSelection="${['':'Select One...']}"optionKey="id" optionValue="information" name="sampleParameters" id="parameter" value="${sampleInstance?.sampleParameters}" from="${infoMap?.getValue()?.sort(){it.information}}" /></td>
</tr>
</g:each>
</g:each>