Tapestry-security/shiro check for 'any' permission

2017-04-19 Thread Robin Garner
I've just about finished adding my first feature that uses object permissions to a tapestry app (tapestry-security 0.5.1, tapestry 5.3.8). Users are given permissions to the objects they are allowed to maintain, when they go to the new page, only the objects they have permission to maintain ap

How to trigger a zone update from a jquery Context Menu event ?

2015-09-19 Thread Robin Garner
return Arrays.asList(new ContextMenuItem("Update count", "updateCount")); } @Component private Zone testZone; @OnEvent(value="updateCount") Object contextMenuAction() { count++; return testZone.getBody(); } } ----- Tha