0

我正在尝试制作自定义编辑页面。我获取对象 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>
4

1 回答 1

2

sampleInstance?.sampleParameters返回一个Collection对象,因此,如果 GrailsCollectionvalue属性中检测到 a 并且multiple尚未设置该属性,它将multiple为您设置该属性。从而将您的选择呈现为多选。

设置multiple="false"将无济于事,因为 Grails 只允许属性直接通过,因此您会获得一个<select multiple="false" ...>标签,并且该属性的存在可能会导致浏览器将其呈现为多选。

尝试仅将单个实例sampleParameters作为value属性传递以具有单个选择字段。

于 2012-08-25T03:59:36.800 回答