Problem sending email using SSL after upgrading to Wicket 1.5

2012-08-13 Thread James Eliyezar
Greetings to all of you. We recently upgraded our application to Wicket 1.5. However, after upgrading we had problems sending email using SSL from our application. This may not be related to wicket at all but I promise we didn't change any dependencies other than wicket's. What amuses me is that

Re: Is there a way to search component by its wicket ID ?

2012-08-13 Thread James Eliyezar
You can definitely search by wicket id but you may have to specify the hierarchy as well. Something like this, TextField usernameField = (TextField) get(userForm:username); to get the text field component with the wicket id username inside the form whose wicket id is userForm. Hope this helps

Re: Problem sending email using SSL after upgrading to Wicket 1.5

2012-08-14 Thread James Eliyezar
the problem is in these settings. On Tue, Aug 14, 2012 at 5:34 AM, James Eliyezar ja...@mcruncher.com wrote: Greetings to all of you. We recently upgraded our application to Wicket 1.5. However, after upgrading we had problems sending email using SSL from our application. This may

Re: Is there a way to search component by its wicket ID ?

2012-08-14 Thread James Eliyezar
Because the id is unique only within the markup container of a component. It need not be unique in a page. This is by design. For more details refer: https://cwiki.apache.org/WICKET/component-hierarchy.html On Tue, Aug 14, 2012 at 3:42 PM, arkadyz111 azelek...@gmail.com wrote: But why we have

Re: Problem sending email using SSL after upgrading to Wicket 1.5

2012-08-15 Thread James Eliyezar
It turns out that the problem was because of the custom trust store we were using in our application. It has nothing to do with wicket. Sorry for bothering you all. On Tue, Aug 14, 2012 at 3:55 PM, James Eliyezar ja...@mcruncher.com wrote: Martin, Yes I use smtp props that are similar to what

Re: Is there a way to search component by its wicket ID ?

2012-08-15 Thread James Eliyezar
refactoring the unit test code less when shuffling panels on a page. ~ Thank you, Paul Bors -Original Message- From: James Eliyezar [mailto:ja...@mcruncher.com] Sent: Tuesday, August 14, 2012 4:12 AM To: users@wicket.apache.org Subject: Re: Is there a way to search component

WicketTester best practices

2012-08-15 Thread James Eliyezar
Friends, Just curious to find out what best practices do you all follow when using WicketTester. FYI, to improve the performance of unit tests, we decided to use a shared instance of WicketTester across our unit tests. The tests worked fine in Wicket 1.4.x but fail after upgrading to 1.5.x when

Re: WicketTester best practices

2012-08-16 Thread James Eliyezar
Any suggestions regarding this? Thank you. On Thu, Aug 16, 2012 at 10:04 AM, James Eliyezar ja...@mcruncher.comwrote: Friends, Just curious to find out what best practices do you all follow when using WicketTester. FYI, to improve the performance of unit tests, we decided to use a shared

Re: WicketTester best practices

2012-08-16 Thread James Eliyezar
WicketTester: https://cwiki.apache.org/** WICKET/testing-pages.htmlhttps://cwiki.apache.org/WICKET/testing-pages.html Tom On Thu 16 Aug 2012 09:14:22 PM EDT, James Eliyezar wrote: Any suggestions regarding this? Thank you. On Thu, Aug 16, 2012 at 10:04 AM, James Eliyezar ja...@mcruncher.com

Unable to get response page from PageRequestHandlerTracker

2012-08-28 Thread James Eliyezar
Hi, We recently migrated our application to wicket-1.5.8. We have an audit aspect based on Spring AOP that shall log the actions performed in the current page. In wicket 1.4 we use to get that like RequestCycle.get().getResponsePage(). This has changed and I know that wicket 1.5 doesn't support

Re: Unable to get response page from PageRequestHandlerTracker

2012-08-29 Thread James Eliyezar
Should I register PageRequestHandlerTracker anywhere? On Wed, Aug 29, 2012 at 2:40 PM, James Eliyezar ja...@mcruncher.com wrote: Alright Paul. This is my code: public class HomePage extends WebPage { private static Logger logger = LoggerFactory.getLogger(HomePage.class); private

Re: Unable to get response page from PageRequestHandlerTracker

2012-08-29 Thread James Eliyezar
it in the wicket application's init method. @Override public void init() { super.init(); getRequestCycleListeners().add(new PageRequestHandlerTracker()); } On Wed, Aug 29, 2012 at 2:41 PM, James Eliyezar ja...@mcruncher.com wrote: Should I register

Re: Unable to get response page from PageRequestHandlerTracker

2012-08-29 Thread James Eliyezar
mgrigo...@apache.orgwrote: Hi, Yes, you have to register it. It is not registered by default because not everyone needs it. On Wed, Aug 29, 2012 at 9:01 AM, James Eliyezar ja...@mcruncher.com wrote: Guys, From the javadoc of IRequestCycleListener, I found that we have to explicitly

Re: Unable to get response page from PageRequestHandlerTracker

2012-08-29 Thread James Eliyezar
I like that deal.. :-) On Wed, Aug 29, 2012 at 3:09 PM, Martin Grigorov mgrigo...@apache.orgwrote: I'll improve the javadoc. You improve the wiki page ;-) On Wed, Aug 29, 2012 at 9:07 AM, James Eliyezar ja...@mcruncher.com wrote: Thanks Martin for the info. A note

Re: Unable to get response page from PageRequestHandlerTracker

2012-08-29 Thread James Eliyezar
Eliyezar ja...@mcruncher.com wrote: I like that deal.. :-) On Wed, Aug 29, 2012 at 3:09 PM, Martin Grigorov mgrigo...@apache.org wrote: I'll improve the javadoc. You improve the wiki page ;-) On Wed, Aug 29, 2012 at 9:07 AM, James Eliyezar ja...@mcruncher.com wrote: Thanks Martin

Re: Unable to get response page from PageRequestHandlerTracker

2012-08-29 Thread James Eliyezar
Updated the wiki Request Cycle in Wicket 1.5https://cwiki.apache.org/confluence/display/WICKET/RequestCycle+in+Wicket+1.5 On Wed, Aug 29, 2012 at 3:31 PM, James Eliyezar ja...@mcruncher.com wrote: That was fast Martin. I'm working on the wiki now. On Wed, Aug 29, 2012 at 3:27 PM, Martin

Re: Unable to get response page from PageRequestHandlerTracker

2012-08-29 Thread James Eliyezar
, they can just delegate to the respectve getMethod(RequestCycle) On Wed, Aug 29, 2012 at 1:32 PM, Martin Grigorov mgrigo...@apache.org wrote: Thanks ! On Wed, Aug 29, 2012 at 10:00 AM, James Eliyezar ja...@mcruncher.com wrote: Updated the wiki Request Cycle in Wicket 1.5 https

Re: ObjectAutoCompleteBuilder in wicket 1.5.7 get is not a valid Serializable error.

2012-09-11 Thread James Eliyezar
Any updates regarding this? The issue https://github.com/wicketstuff/core/issues/148 filed in the wicketstuff issue tracker remains unanswered. On Thu, Aug 30, 2012 at 3:38 PM, Vignesh Palanisamy vign...@mcruncher.comwrote: This is the Class tom, private class SearchOptions implements

Is anyone using ObjectAutoCompleteField from wicketstuff?

2012-09-11 Thread James Eliyezar
Hi all, What do you all do display objects in an autocomplete field? I used to use ObjectAutoCompleteField from wicketstuff but seems that it is having some problem with wicket-1.5.xhttps://github.com/wicketstuff/core/issues/148 Do you all use this component or stick to the traditional

Re: Is anyone using ObjectAutoCompleteField from wicketstuff?

2012-09-11 Thread James Eliyezar
Select2 is an awesome component. Will try that out. Anybody else out there? On Wed, Sep 12, 2012 at 9:21 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: http://ivaynberg.github.com/select2/ https://github.com/ivaynberg/wicket-select2 -igor On Tue, Sep 11, 2012 at 5:50 PM, James Eliyezar

Re: [Announce] wicket-jquery-ui 6.0.0 released

2012-09-21 Thread James Eliyezar
Hi Sebastien, Checked out the demos and wicket-jquery-ui looks amazing. The examples are very clear, the code looks much simpler. Looks I'll be moving over to wicket-jquery-ui soon. Thank you for all your efforts and hardwork. On Thu, Sep 13, 2012 at 7:19 AM, Sebastien seb...@gmail.com wrote:

How to create a dashboard with draggable widgets?

2012-09-21 Thread James Eliyezar
Wicketers, Wondering how to create a google analytics style dashboard with draggable widgets that remembers it's position across sessions. Please share your thoughts. -- Thanks regards James Selvakumar

Re: Datepicker with range selection support

2012-09-23 Thread James Eliyezar
This is really amazing Sebastien. wicket-jquery-ui is really feature rich. Is the demo site a wicket app? On Mon, Sep 24, 2012 at 1:38 AM, Sébastien Gautrin sebastien.gaut...@gmail.com wrote: Wow, This is simply terrific. I will sift through all this in the next weeks. All I can say is a

Re: How to create a dashboard with draggable widgets?

2012-09-23 Thread James Eliyezar
It's exciting to be part of wicket community. Thanks a lot friends for your enthusiastic responses. I will go through the resources you have shared. On Fri, Sep 21, 2012 at 6:13 PM, Decebal Suiu decebal.s...@asf.ro wrote: Hi I will release today or Monday a wicket-dashboard project on github.

Re: [Announce] wicket-dashboard

2012-10-01 Thread James Eliyezar
This is a very good news. Will be using this right away! I have a small problem guys, definitely something is wrong with my setup (I'm using nexus). I get this exception when I try to build the project. No versions available for

Re: [Announce] wicket-dashboard

2012-10-02 Thread James Eliyezar
Managed to get the demo working. It's really elegant. Echoing the same feelings as Paul. It would be nice to split this up into relevant modules. While I was playing around with the code, I thought of creating a custom widget with just a data table. So I created the following classes: -