Re: mouseover in wicket

2012-03-25 Thread Dan12321
Thanks. I try jwicket-tooltip, but it seems that it do not work with wicket 1.5.4. Visural wicket works, but I can not use ajax. When I move cursor over same element, I would like to call same method, that create tooltip. -- View this message in context:

Re: Override BrowserInfoPage

2012-03-25 Thread Martin Grigorov
Hi, Override org.apache.wicket.protocol.http.WebSession#newBrowserInfoPage On Fri, Mar 23, 2012 at 6:54 PM, Adam Gray adam.j.g...@gmail.com wrote: You can provide your own markup for BrowserInfoPage if you place it in the correct package within your application

Re: HTML frame alternative to visualise external web-page

2012-03-25 Thread Martin Grigorov
Hi Walter, I have no idea why InlineFrame is designed this way. I see Sven is @author of it. @Sven: do you remember why you made it this way - with Wicket Page, pageClass and ILinkListener ? @Walter: please create a ticket. I think this can be improved for Wicket 6. On Sun, Mar 25, 2012 at

Re: After upgrading from wicket 1.5.0 to 1.5.1+ we have a simple problem

2012-03-25 Thread Martin Grigorov
Hi, On Sat, Mar 24, 2012 at 10:44 PM, Bas Gooren b...@iswd.nl wrote: After more debugging, I learned some new things about wicket. It appears that an invisible stateful link makes a page stateful. The base page for this application contains a username label + logout link (stateful), which

Re: ModalWindow accessibility - DIV placeholder not used

2012-03-25 Thread Martin Grigorov
Hi Lucas, This is how ModalWindow currently works. There is a ticket (https://issues.apache.org/jira/browse/WICKET-3404) that will make some changes in the way its html is generated but I'm not sure whether these changes will help you anyhow. I'm not an expert in ARIA at all so maybe you can help

Re: Using AbstractResourceStreamWriter in wicket 1.5

2012-03-25 Thread Martin Grigorov
Hi, I haven't used it personally but I think this class is broken. It doesn't write directly to the container's response's outputstream, so whatever you write is buffered. And this is against the said in the javadoc of org.apache.wicket.core.util.resource.IResourceStreamWriter. Please file a

Re: java.io.UnsupportedEncodingException: ISO8859_10

2012-03-25 Thread Martin Grigorov
Hi, Wicket doesn't set any encodings. Either your code sets it via WebResponse#setContentType(text/html;encoding=blah) or Caucho uses the default encoding for the machine where it runs. Check with your system administrator. On Fri, Mar 23, 2012 at 4:00 PM, andretampold andretamp...@hotmail.com

Re: After upgrading from wicket 1.5.0 to 1.5.1+ we have a simple problem

2012-03-25 Thread Bas Gooren
Hi, Op 25-3-2012 17:44, schreef Martin Grigorov: Hi, On Sat, Mar 24, 2012 at 10:44 PM, Bas Goorenb...@iswd.nl wrote: After more debugging, I learned some new things about wicket. It appears that an invisible stateful link makes a page stateful. The base page for this application contains a

Re: inferring locale from URL in 1.5

2012-03-25 Thread armhold
Martin, The wicket-examples site rarely works for me (server under-resourced?) but I found the code in the examples section of the Wicket source from git. LocaleFirstMapper was a huge help; I'm fairly sure I wouldn't have gotten it working without that reference, so thank you very much. Here's

Re: inferring locale from URL in 1.5

2012-03-25 Thread Martin Grigorov
wicketstuff.org is the one that is down most of the time. wicket-library.com is OK, I've never had problems with it. On Sun, Mar 25, 2012 at 7:39 PM, armhold armh...@gmail.com wrote: Martin, The wicket-examples site rarely works for me (server under-resourced?) but I found the code in the

Re: After upgrading from wicket 1.5.0 to 1.5.1+ we have a simple problem

2012-03-25 Thread Martin Grigorov
On Sun, Mar 25, 2012 at 7:19 PM, Bas Gooren b...@iswd.nl wrote: Hi, Op 25-3-2012 17:44, schreef Martin Grigorov: Hi, On Sat, Mar 24, 2012 at 10:44 PM, Bas Goorenb...@iswd.nl  wrote: After more debugging, I learned some new things about wicket. It appears that an invisible stateful link

Re: Homepage runs 2 times if I mount it as /

2012-03-25 Thread Paolo
Alle venerdì 23 marzo 2012, Jeff Schneller ha scritto: I may be wrong but you don't need to mount the homepage which is why it is being executed twice. Yes, ok, you are right. But the problem was start because I use the NoVersionMount to mount homepage because I don't like that the url of

BookmarkablePageLink with Label is supported by Wicket?

2012-03-25 Thread Paolo
I read on this web site: http://ondra.zizka.cz/stranky/programovani/java/web/wicket/wicket-link-with-label.texy - Wicket does not have exactly a „link with label“ component out of the box. Remember Wicket tries to hide the HTTP from you (and is quite good at it). It has a Link,

Re: BookmarkablePageLink with Label is supported by Wicket?

2012-03-25 Thread Dan Retzlaff
Check out AbstractLink#setBody(IModelString). On Sun, Mar 25, 2012 at 7:07 PM, Paolo irresistible...@gmail.com wrote: I read on this web site: http://ondra.zizka.cz/stranky/programovani/java/web/wicket/wicket-link-with-label.texy - Wicket does not have exactly a „link with

adding associated text to the close anchor on modal windows

2012-03-25 Thread lukuperman
Hello, I work on a team that supports a web application implemented with Wicket, and because of accessibility compliance I'm addressing some DQA findings. It would be nice to have the close anchor of modal windows (top right corner) having an associated text, for assistive technologies. This can