I have this in a jsp file and it works:
<display:column property="certificacion.estado"
title="CERTIFICACION"
sortable="true"/>
but I want to display html: select like this:
<display:column title="CERTIFICACION"
sortable="true">
<html:select property="certificacion.estado" >
<html:options property="id_estado"
labelProperty="estado"
collection="listaEstadosCertificacionDTO"/>
</html:select>
</display:column>
but does not work, errors say:
Missing getter method for certacion.estado property for bean named org.apache.struts.taglib.html.BEAN
thank!
source
share