Looking for a less chatty auto-complete component?

2010-03-14 Thread Ben Hutchison
results. - If any of the first N characters in the string are altered, the cache results are discarded and a new query is performed. Does anything like this exist in open source that could be reused? -Ben -- *Ben Hutchison Senior Developer * Level 2 476 St Kilda Road Melbourne VIC

Wicket's @SpringBean and the autowire-candidate annotation

2009-07-09 Thread Ben Hutchison
the reporting database, and use explicit names only for the other 5%. This seems to require the Wicket-Spring integration to understand the autowire-candidate=false attribute. Regards Ben -- *Ben Hutchison Senior Developer * Level 2 476 St Kilda Road Melbourne VIC 3004 T 613 8807 5252

Does @Transactional work on a Wicket Component's methods?

2009-06-16 Thread Ben Hutchison
-modified dynamic subclass with AOP hooks installed, when the Panel is instantiated with a 'new' operator? Regards Ben -- *Ben Hutchison Senior Developer * Level 2 476 St Kilda Road Melbourne VIC 3004 T 613 8807 5252 | F 613 8807 5203 | M 0423 879 534 | www.ibsglobalweb.com http

Best way to do a tracking Nav Bar in Wicket?

2009-06-04 Thread Ben Hutchison
anything preexisting in Wicket that handles this use-case or mapping. Any suggestions for something I could re-use, or examples, appreciated. Thanks Ben PS Thank you also for the responses to my recent question on context-sensitive authorization, v useful. -- *Ben Hutchison Senior

What's the simplest way to do Context-sensitive Authorization in Wicket?

2009-05-26 Thread Ben Hutchison
-- *Ben Hutchison Senior Developer * Level 2 476 St Kilda Road Melbourne VIC 3004 T 613 8807 5252 | F 613 8807 5203 | M 0423 879 534 | www.ibsglobalweb.com http://www.ibsglobalweb.com/ - To unsubscribe, e-mail: users

Re: What's the simplest way to do Context-sensitive Authorization in Wicket?

2009-05-26 Thread Ben Hutchison
authorization. The example (chapter 11, by the way), is a classic non-contextual authorization example - there are User and Admin roles that are unaffected by context. -Ben -- *Ben Hutchison Senior Developer * Level 2 476 St Kilda Road Melbourne VIC 3004 T 613 8807 5252 | F 613 8807

Re: What's the simplest way to do Context-sensitive Authorization in Wicket?

2009-05-26 Thread Ben Hutchison
Igor Vaynberg wrote: class EditListingLink extends LinkListing { protected void isEnabled() { Listing listing=getModelObject(); return MySession.get().getUser().equals(listing.getAuthor()); } } -igor On Tue, May 26, 2009 at 6:12 PM, Ben Hutchison b...@ibsglobalweb.com wrote