select2choice and scrolling

2015-10-14 Thread Lois GreeneHernandez
I have a select2choice component and the select value is often quite large. I'd like to find a way to make that scrollable or visible in some way. Any advice would be greatly appreciated. Thanks Lois

Wicket & OACC

2015-10-14 Thread Sebastien
Hi all, I have the need to manage access control on objects/things and I would like to give a try to OACC [1] which looks promising to me. Does someone knows about a wicket layer over OACC (implementing IAuthorizationStrategy, IResource, etc) ? Just to not reinvent the wheel... Many thanks in

Re: Wicket & OACC

2015-10-14 Thread Maxim Solodovnik
Sounds interesting :) Please share your work if possible :) WBR, Maxim (from mobile, sorry for the typos) On Oct 14, 2015 22:19, "Sebastien" wrote: > Hi all, > > I have the need to manage access control on objects/things and I would like > to give a try to OACC [1] which looks

Select2Choice component issues

2015-10-14 Thread Lois GreeneHernandez
I need to slightly modify the behavior of a wicket select2Choice dropdown component. When you've selected a choice if the choice is longer than the window, you see your choice truncated with elipses. I'm wondering if its possible to do one of the following: 1) Make the choice scrollable 2) Add

FeedbackPanel and warnings

2015-10-14 Thread Entropy
Our feedbackpanels work fine, have for a while. But we just got a new requirement to add warnings. We find that when there is at least one error message, the panel shows all messages, regardless of their level, but when there are only warnings, the panel remains hidden as if there were no

Re: ThreadLocal usage for managing session in Wicket

2015-10-14 Thread santhosh
Thank you very much for the reply. Your cleared my doubt which is hammering me from 1 week. Your post triggered me one more doubt, which is: I have seen in the wicket implementation code that ThreadContext class has a references to Application, Session and RequestCycle. So whenever the request

Re: ThreadLocal usage for managing session in Wicket

2015-10-14 Thread Martin Grigorov
Hi, Whenever a HTTP request comes to the web container (Tomcat, Jetty, ...) a Servlet or a Filter is used to handle it. In the case of Wicket this is WicketFilter. I.e. WicketFilter is the entry and exit point for request handling. As I explained earlier - each http request is handled by exactly

Re: Select2Choice component issues

2015-10-14 Thread Martin Grigorov
Hi, On Wed, Oct 14, 2015 at 7:06 PM, Lois GreeneHernandez < lgreenehernan...@knoa.com> wrote: > I need to slightly modify the behavior of a wicket select2Choice dropdown > component. > When you've selected a choice if the choice is longer than the window, you > see your choice truncated with

Re: select2choice and scrolling

2015-10-14 Thread Martin Grigorov
Please ask your question in Select2 googlegroup or at StackOverflow. Once you find how to achieve this with plain HTML/JS then I guess it would be easy to add Wicket Behavior that applies it to Select2Choice component. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov

Re: FeedbackPanel and warnings

2015-10-14 Thread Entropy
We searched the code and we do not use the filter. What's more, during investigation of the issue, we created a filter that always returns true from the accept() method of the filter just to see, and in fact when only warnings are added, the accept method is never called, whereas in a mixture, we

Re: FeedbackPanel and warnings

2015-10-14 Thread Martin Grigorov
If you can reproduce this with a quickstart app using 6.20.0/7.0.0 then please attach it to JIRA and we will take a look. Thanks! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Oct 14, 2015 at 9:29 PM, Entropy wrote: > We searched

Re: FeedbackPanel and warnings

2015-10-14 Thread Martin Grigorov
Hi, There is no such setting in Wicket and this is not the default behavior. Please check that you do notuse IFeedbackMessageFilter like ErrorLevelFeedbackMessageFilter that sets such minimum level on the FeedbackPanel. Martin Grigorov Wicket Training and Consulting