I want to delete an object within a table grid, and after that only update
the table itself, but not the rest of the page.

UserPage.tml:
 Heading 

<t:zone t:id="outer">
        <t:grid...
                <t:eventLink event="delete" context="user.id"
zone="outer">DEL<t:eventLink>
        </t:grid>
</t:zone>

<other content...>


UserPage (excerpt):

@InjectComponent
Zone outer;

onDelete(long id) {
        dao.delete(id);
        return outer.getBody();
}


Result:
org.apache.tapestry5.runtime.ComponentEventException
Render queue error in SetupRender[UserPage:grid.columns]: Bean editor model
for User already contains a property model for property 'action'.




--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Only-update-specific-table-zone-on-delete-of-object-tp5717407.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