Re: Notifications

2009-06-01 Thread Alex Objelean
I did something similar, using jquery notice plugin (also known as jgrowl). The implementation of this behavior can be found at this link: http://pastebin.com/f6db2ec0e http://pastebin.com/f6db2ec0e And the usage is pretty simple, all you have to do is to add the behavior to your form like

A bit confused, please suggest

2009-06-01 Thread Eyal Golan
Hi, We have a situation as follows: There's a page that holds (besides other things) two charts that are generated by JFreechart. The chart is in a styled panel. Everything is OK. The chart may take some time to be generated so I put it in AjaxLazyLoadPanel. We also let the user decide if to show

Re: Copy Form Fields

2009-06-01 Thread Eyal Golan
I'm not sure, but give it a try: In the onClick, set the property address2 to be the same as property address1. Add myAddress2 to the target. If you use compoundpropertymodel, it should work. Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn:

Re: Notifications

2009-06-01 Thread Martin Grigorov
I've contributed a JGrowlFeedbackPanel as well some time ago: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/jquery-parent/jquery-examples/src/main/java/org/wicketstuff/jquery/demo/Page4JGrowl.java El lun, 01-06-2009 a las 00:11 -0700, Alex Objelean

Re: Cancelling pending Ajax requests

2009-06-01 Thread Antti Mattila
What kind of behavior do you have now and what kind do you want? When there is 500ms throttle and handling each throttled request takes few seconds, you end up queuing and handling each request. If you are interested in only the last request, this solution clears the pending requests so

Re: Cancelling pending Ajax requests

2009-06-01 Thread JohannesK
Ideally, I would want to add a small wait period after each key stroke before the event is actually triggered and throttle the last event if another one comes in before the time period expires. Antti Mattila wrote: Problem: I want to validate input as user types it, but validation takes a

Re: OutOfMemory on certain combinations of controls

2009-06-01 Thread Marcin Palka
Should it be considered a bad design to use callbacks from a modal window? I use modal windows to edit rows from a grid. On save action I close the modal window and then call a callback method back in the the calling panel which makes the grid refresh. Does this approach carry any risk? What

Grizzly + Wicket integration

2009-06-01 Thread Eman Nollase
Hello, Is there a Wicket + Grizzly integration? Thanks a lot. Cheers.

Re: Wizard Custom Layout example

2009-06-01 Thread shmicket
Hi John, Did you ever figure this out? I'm also looking to override layout markup, but can't find the components that output table markup (which we want to change to divs, etc). Overriding newForm() looks promising, but I don't know where to start (and I certainly don't want to rewrite the

Re: Wizard Custom Layout example

2009-06-01 Thread John Armstrong
I did and have been meaning to post to the wiki on it. I'll follow-up to the list later today with some info. Its a fantastic component. I don't use maven yet so I can't send a quickstart but I will make some code available as well. John --Original Message-- From: shmicket To:

Re: Copy Form Fields

2009-06-01 Thread hill180
AjaxLink link = new AjaxLink(copyAddress){ @Override public void onClick(AjaxRequestTarget target) { myAddress2.setModelObject(myAddress1.getValue()); target.addComponent(myAddress2); } };//end of

Re: Help debugging why a component is not showing up...

2009-06-01 Thread Ryan McKinley
yup that helps! Also just found: WicketTesterHelper.getComponentData( getPage() ) thanks On Sat, May 30, 2009 at 3:06 PM, jWeekend jweekend_for...@cabouge.com wrote: Ryan, Is PageView what you're looking for? Regards - Cemal http://jWeekend.com jWeekend ryantxu wrote: Hello- I

Re: Copy Form Fields

2009-06-01 Thread Eyal Golan
I though more something like this: AjaxLink link = new AjaxLink(copyAddress){ @Override public void onClick(AjaxRequestTarget target) { this.address2 = this.address1; target.addComponent(myAddress2); }

RE: Long content

2009-06-01 Thread Jeremy Thomerson
Label is correct. It's exactly what you are looking for functionally. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Luther Baker lutherba...@gmail.com Sent: Sunday, May 31, 2009 11:38 PM To: users@wicket.apache.org Subject: Re:

Re: Grizzly + Wicket integration

2009-06-01 Thread Scott Swank
Not that I'm aware of. What specifically do you want to do with nio? Scott On Mon, Jun 1, 2009 at 7:01 AM, Eman Nollase eman.noll...@gmail.com wrote: Hello, Is there a Wicket + Grizzly integration? Thanks a lot. Cheers.

Re: How to hyperlink the validation or error messages to the respective fields on a large form

2009-06-01 Thread Igor Vaynberg
this is an interesting idea. i do not think currently it is possible. what we can do is tweak wicket to always add the markup id or input name of the form component as a veriable to every error message generated, that way you can use it in your error messages to generate the javascript/anchor url

Re: CheckGroup and AjaxPagingNavigator

2009-06-01 Thread JulianS
Thanks Igor However, I'm not seeing any such factory methods in 1.4-rc2. The only subclass of PagingNavigationLink is AjaxPagingNavigationLink; there's no submit version. As I see it, my best option is to create my own AjaxPagingNavigationSubmitLink by cloning the code in AjaxSubmitLink. I have

Style and variant

2009-06-01 Thread Carlos Pita
Hi all, we have a site where some pages/components implement variant V. Now there is a requirement to sell a mainly reskinned version S of this site to a customer. So my first thought was to implement this site-wide variant S as a style. But soon I realised that _V wouldn't match variant V for

Re: Style and variant

2009-06-01 Thread Igor Vaynberg
yeah, this is a problem with the design of the resource resolution. unfortunately we cannot fix until 1.5. here is an email thread where some possible future solutions were discussed. http://markmail.org/thread/lj3luznjnvbun72r i didnt notice a jira issue for this so i will add one. -igor On

Re: Style and variant

2009-06-01 Thread Igor Vaynberg
https://issues.apache.org/jira/browse/WICKET-2298 -igor On Mon, Jun 1, 2009 at 11:45 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: yeah, this is a problem with the design of the resource resolution. unfortunately we cannot fix until 1.5. here is an email thread where some possible future

can't build Elephas

2009-06-01 Thread danisevsky
hi, I would like to try Elephas but I can't build it with maven. Does anyone have actual pom.xml file? Or am I doing somethig wrong? mvn install -Dmaven.test.skip=true [INFO] [ERROR] BUILD ERROR [INFO]

Re: can't build Elephas

2009-06-01 Thread Ryan Gravener
It's unlikely the SNAPSHOT for surefire will linger around. Change that to 2.4.3 Ryan Gravener http://isithotinhereorisitjust.me | http://twitter.com/ryangravener On Mon, Jun 1, 2009 at 2:47 PM, danisevsky danisev...@gmail.com wrote: hi, I would like to try Elephas but I can't build it with

Re: Ajax Request Security

2009-06-01 Thread Jeremy Thomerson
I received the following question in my personal email regarding this thread. I decided to respond here. First, let me add this: Remember that there is NO additional security given to you by POST as it relates to GET. Both are insecure if you pass the action (ie delete), the key (ie entity ID)

A button like BookmarkablePageLink

2009-06-01 Thread Eyal Golan
Hi, It may be newbie question. How do I create a button that opens a new web page in a different window / tab? The same as BookmarkablePageLink with PopupSettings etc. Thanks, Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P

Re: A button like BookmarkablePageLink

2009-06-01 Thread James Carman
Try attaching your link to a button On Mon, Jun 1, 2009 at 5:39 PM, Eyal Golan egola...@gmail.com wrote: Hi, It may be newbie question. How do I create a button that opens a new web page in a different window / tab? The same as BookmarkablePageLink with PopupSettings etc. Thanks, Eyal

London Wicket event on Wednesday

2009-06-01 Thread Alastair Maw
Hi, folks. Quick reminder that there's a London Wicket Users Group meet-up on Wednesday evening at Google UK in Victoria. It's rather late in the day for me to be announcing the topic of my talk, but it's going to be interesting: *Bookmarkable Everything* Wicket is great at managing server side

Re: Grizzly + Wicket integration

2009-06-01 Thread freak182
Actually, we had a requirements like sending a request to a remote pc.Just like wicket-push-examples but my colleague said it would be better if grizzly use. Thanks a lot. Cheers. Scott Swank wrote: Not that I'm aware of. What specifically do you want to do with nio? Scott On Mon,

Re: How to hyperlink the validation or error messages to the respective fields on a large form

2009-06-01 Thread deepeshmathur
This wasn't my original idea... I worked in a project where we had home grown wicket like framework (and thats why I liked wicket as well) and we already had this functionality there. I shall have a look at the mechanism we used there (don't remember at the moment). Regards Deepesh

WIA ch 13 DAO creation (just a lot of cheese?)

2009-06-01 Thread David Brown
Hello wicket bunch, I have a curious situation using the WIA ch13 DAO/hibernate code. When I try to introduce a third class aptly named: Test in the domain and a DAO interface named: TestDao and then a class: TestDaoImpl I get the unresolvable Error: ***

Re: WIA ch 13 DAO creation (just a lot of cheese?)

2009-06-01 Thread James Carman
Does Test extend DomainObject? On Mon, Jun 1, 2009 at 10:32 PM, David Brown dbr...@sexingtechnologies.com wrote: Hello wicket bunch, I have a curious situation using the WIA ch13 DAO/hibernate code. When I try to introduce a third class aptly named: Test in the domain and a DAO interface

Re: Wicketeer Available for Hire...

2009-06-01 Thread Jeremy Levy
James (and list...) We are hiring, send me your resume. jer...@meetmoi.com http://meetmoi.com http://m.meetmoi.com Jeremy On Sun, May 31, 2009 at 8:53 AM, James Carman ja...@carmanconsulting.comwrote: All, It looks like my current client engagement is winding down here soon. So, it looks

Modal Window and Forms

2009-06-01 Thread Ayodeji Aladejebi
Hi,Please does anyone has an example on how a modal window should be used to collect information using a Form component because in my use, clicking on an AjaxSubmitLink does not invoke the Links.onSubmit. Any examples on using Forms with ModalWindow?

Re: Modal Window and Forms

2009-06-01 Thread Ayodeji Aladejebi
no need solved!..simply moved the AjaxSubmitLink outside the form container and used ModalWindow,closeCurrent On Tue, Jun 2, 2009 at 4:38 AM, Ayodeji Aladejebi aladej...@gmail.comwrote: Hi,Please does anyone has an example on how a modal window should be used to collect information using a

Re: Modal Window and Forms

2009-06-01 Thread Ayodeji Aladejebi
Also 2 Forms were mistakenly nested which resulted into the onSubmit of the outer form getting called as well. form wicket:id=mainForm !-- this was the problem -- div wicket:id=modalDialog /div /form therefore ModalWindow.add(new InputForm) was causing 2 nested forms which affected the expected