Hi,
I have a tapestry 5 app. I have an eventlink that updates a zone.
Works perfectly in explorer 8, firefox and chrome, but with explroer 9 I
get:

ioc.Registry A component event handler method returned the value Block[Body
of Busqueda:cargosgrillazone, at
classpath:com/tida/servir/pages/Busqueda.tml, line 244]. Return type
org.apache.tapestry5.internal.structure.BlockImpl can not be handled.

The tml for the code is:
#  Cargos  

        <div id="cargoCell">
                <t:zone t:id="cargosGrillaZone">
                  <t:if test="actual">
                        
Cargos Asignados
 
                        <t:CargosGrilla t:id="cargosGrilla" actual="actual" 
                        zone="cargosGrillaZone" busqueda = "true"/>
                  <t:parameter name="else">
                        No hay trabajador seleccionado
                  </t:parameter>
                  </t:if>

                </t:zone>
        </div>


    Object onToCargo(Trabajador persona) {
        actual = persona;
        return cargosGrillaZone.getBody();
    }

Regards,


--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Eventlink-zone-update-explorer-9-error-tp4599684p4599684.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to