Re: AjaxButton without a Form

2008-05-28 Thread mnwicket
Thank you...just found that out myself and was about to update this forum. Gerolf Seitz wrote: you can have input type=button wicket:id=linkButton/ in markup and new AjaxLink(linkButton) {...} in java code. Gerolf On Tue, May 20, 2008 at 2:35 AM, mnwicket [EMAIL PROTECTED] wrote

AjaxButton without a Form

2008-05-19 Thread mnwicket
Is there a good way to create a button, say AjaxButton that does depend on a form? Basically I just want to create my own button with in the content of a modal window to close it. -- View this message in context: http://www.nabble.com/AjaxButton-without-a-Form-tp17330924p17330924.html Sent

Re: AjaxButton without a Form

2008-05-19 Thread mnwicket
That is an option, but would rather use; input type=button.../ I have styles around my input buttons that I want to reuse. I'm sure I can create my own custom component, but thought someone has probably done it or has a good way around it. Mathias P.W Nilsson wrote: Are you talking about

Sorting and ListView

2008-04-04 Thread mnwicket
I'm using a ListView to display contents of a List of a domain object. Pretty simply. However, the domain has a name on it that is internationalized, ie it will used a key value from a dot properties file. The issue is is that the List of object must be sorted based on the internationalized

Re: Sorting and ListView

2008-04-04 Thread mnwicket
This issue isn't about how to sort, this issue is at what point do you grab the translated name. Mathias P.W Nilsson wrote: Couldn't you just use the Comparator? Add all items to a list, with the translated name implement Comparator and make the sort. Return the sorted list as a model.

Re: How do I elegantly put feedback per form field?

2008-03-20 Thread mnwicket
Take a look at the Forms with Flair example at http://londonwicket.org/ -Craig Ned Collyer wrote: How can I elegantly put a feedback panel per form field eg, Email address is required Email: [__] This is not a valid phone number Phone: [asfafadsfafa] This seems like a

Wicket ModalWindow vs Other

2008-03-17 Thread mnwicket
Just out of curiosity, are most people using the ModalWindow provided by the extensions project or are they wrapping a custom component around an existing javascript lib? If the second option, what libs are people using and can anyone provide their experiences and possibly code. -- View this

Resource String from Localizer

2008-03-07 Thread mnwicket
Is it possible to get a resource string from a Localizer that hasn't been added to a Page yet? My situation is that I have an object called Role, the role can be setup by the a client and there are also default roles for all clients that are setup by the application with a resource key attached

Re: Wicket Security - runtime ACLs and Roles help plz

2008-01-28 Thread mnwicket
Ned, I went through the same type of situation and came to the simple conclusion, wicket security just does not cut it for complicated security structures. In the end I rolled my own and it seems to work quite nice. I think the only difference between what I did and you are saying is that my

Wicket Session backed by something other than HTTP Session

2008-01-10 Thread mnwicket
I've worked on a couple applications in the past were they have decided not to use the HTTP Session and instead create their own structure, basically a session type of object gets stored in the database per request. Although I don't really love this direction but I have seen some benefits. My

HTML .properties reload

2007-12-06 Thread mnwicket
I just upgraded from wicket beta2 to rc1 and found that my HTML pages and .properties aren't automatically being reloaded as usual. Did something change? I didn't see anything in the release notes. Thanks -- View this message in context: