我在jsp文件中有此文件,它可以工作:

<display:column property="certificacion.estado"
                title="CERTIFICACION"
                sortable="true"/>

但我想显示一个html:像这样选择:
<display:column title="CERTIFICACION"
                sortable="true">
   <html:select property="certificacion.estado" >
      <html:options property="id_estado"
                    labelProperty="estado"
                    collection="listaEstadosCertificacionDTO"/>
   </html:select>
</display:column>

但不起作用,错误提示:

对于名称为org.apache.struts.taglib.html.BEAN的bean的certificacion.estado属性没有可用的吸气剂方法

谢谢!

最佳答案

好的,我终于可以做到了,像这样...

<display:column title="CERTIFICACION"  sortable="true">
   <html:select property="certificacion.estado" name="row">
      <html:options property="id_estado"
                    labelProperty="estado"
                    collection="listaEstadosCertificacionDTO"/>
   </html:select>
</display:column>

我在值行中添加标签名称

“oji的属性名称,该属性的bean的属性已被咨询,以确定在呈现此输入字段时应预先选择哪个选项。如果未指定,则使用与封闭标记关联的bean。[RT Expr]” look here

10-08 20:06