Re: Passing parameters from java code to global ajax call listeners

2013-07-26 Thread Martin Grigorov
Hi, You may mark any component with data-no-veil attribute. Later you can check with: if ($(attrs.c).data(no-veil) !== null) {...} On Fri, Jul 26, 2013 at 1:40 AM, Marios Skounakis msc...@gmail.com wrote: Hi all, I am subscribing to the global ajax call listeners to show and hide a veil

Re: Jquery tooltip for multiple fields in wicket

2013-07-26 Thread Andrew Schetinin
Hi Martin, for jQuery UI see: http://www.7thweb.net/wicket-jquery-ui/ But where is a tooltip in that library? I could not find it... Regards, Andrew -- Andrew Schetinin On Wed, Jul 24, 2013 at 3:28 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, If you use Twitter Bootstrap then you

Re: Jquery tooltip for multiple fields in wicket

2013-07-26 Thread Sebastien
Hi Andrew, There is no sample yet about the tooltip. I will add sample(s) as soon I add a missing functionality (specifying tooltip content using a Panel ComponentRenderer, fyi) For now on: To handle tooltips globally in a page: this.add(new TooltipBehavior()); To handle a tooltip for a

Preserve state of wicket page after page navigation

2013-07-26 Thread brazz
Hi, i have a Wicket Page that opens a modal dialog via javascript. The content of the modal dialog is again a wicket page that i forward to. The page of the modal dialog just renders a message and can be closed via javascript. The url of the target page is calculated as follows: String url =

Re: file upload in nested form with CPM needs dummy model

2013-07-26 Thread Martin Grigorov
Hi, On Wed, Jul 24, 2013 at 3:55 PM, Tom Eicher r...@teicher.net wrote: Hello, I have an outer form, with a CPM for a business entity. An inner form FormVoid uploadImageForm = new Form(UploadImageForm); has a FileUploadField uploadImageField = new

Wicket with Apache Shiro

2013-07-26 Thread Michael Chandler
Has anyone on this list had experience integrating Apache Shiro with their Wicket project? I've had a good deal of luck implementing the basics of Shiro security in my Wicket app, but I'm struggling with their provided caching implementation with EhCache. The cacheManager is defined as a bean

Re: Jquery tooltip for multiple fields in wicket

2013-07-26 Thread Andrew Schetinin
Thanks, Sebastien! Regards, Andrew -- Andrew Schetinin On Fri, Jul 26, 2013 at 11:57 AM, Sebastien seb...@gmail.com wrote: Hi Andrew, There is no sample yet about the tooltip. I will add sample(s) as soon I add a missing functionality (specifying tooltip content using a Panel

Re: Passing parameters from java code to global ajax call listeners

2013-07-26 Thread Marios Skounakis
Martin, Thanks for your answer. I'm not sure I understand though. What does mean mark any component with data-no-veil attribute? Use an attribute appender to do something? If yes what? Where is this feature documented? Thanks Marios On Fri, Jul 26, 2013 at 10:21 AM, Martin Grigorov

Re: Passing parameters from java code to global ajax call listeners

2013-07-26 Thread Martin Grigorov
or #onComponentTag() there is also AbstractDefaultAjaxBehavior#configureJson() (or something similar. I have no access to the code now) the idea is to mark the component/attributes somehow On Jul 27, 2013 12:04 AM, Marios Skounakis msc...@gmail.com wrote: Martin, Thanks for your answer. I'm

Re: Passing parameters from java code to global ajax call listeners

2013-07-26 Thread Marios Skounakis
Ah, I now realized data() is a jquery feature. Now I get it. Thanks! On Sat, Jul 27, 2013 at 7:11 AM, Martin Grigorov mgrigo...@apache.orgwrote: or #onComponentTag() there is also AbstractDefaultAjaxBehavior#configureJson() (or something similar. I have no access to the code now) the idea