Wicket Panel Error

2013-01-11 Thread Arun Chauhan
I have a wicket page *MerchantPage.java* inside which I am having a panel *PRODUCTLISTPANEL.JAVA*. Inside which I am having another panel *PRODUCTUPDATEPANEL.JAVA* in which I am uploading image using a IFRAME trick. Iframe name is updateProduct. I am getting this error. Last cause: Unable to

Wicket integration with Spring

2012-12-27 Thread Arun Chauhan
I am making an application in which I want to integrate Wicket + Spring. Application is a grocery store on which user comes and buy something. I know there are two ways to do this. 1. Using the *annotation *aprroach. Wicket-Spring integration shows various ways on how to inject Spring Beans

Use existing Wicket Application for Android Application

2012-12-26 Thread Arun Chauhan
I want to make a Android Application of grocery stores. I have an existing Wicket Application deployed on server which I want to use in my Android Application for request handling. Is it compatible to use wicket application for android part. There are 2 ways: Use existing Wicket Application for

Re: Wicket: redirecting to wicket page using setResonsePage

2012-12-24 Thread Arun Chauhan
Hi, finally i got a solution in wicket. In ParentPage.class I am calling setWindowClosedCallback and in that i have wriiten code for refrehing the ParentPage when modal window closes. modalDialog.setWindowClosedCallback(new ModalWindow.WindowClosedCallback() { private

Re: Example of wicket atmosphere with channel

2012-12-24 Thread Arun Chauhan
Have you tried looking at the Wicket framework's examples? http://www.wicket-library.com/wicket-examples-6.0.x/atmosphere/ -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Example-of-wicket-atmosphere-with-channel-tp4654979p4655038.html Sent from the Users forum

Re: Wicket: redirecting to wicket page using setResonsePage

2012-12-19 Thread Arun Chauhan
Thanks Ernesto for nice suggestion. I will give it a try.. :) Is there a way to do it in wicket code only. Because till now I haven't used much javascript in my application. -- View this message in context:

Re: Wicket: redirecting to wicket page using setResonsePage

2012-12-19 Thread Arun Chauhan
Thanks Ernesto. U are right.. :) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-redirecting-to-wicket-page-using-setResonsePage-tp4654935p4654939.html Sent from the Users forum mailing list archive at Nabble.com.

Wicket create image from file system outside web application directory

2012-12-19 Thread Arun Chauhan
I have a repository storing many images somewhere on the server. I want to be able to create a dynamic Image object with one of the images stored in my repository. I am using wicket 1.5.7. I saw this example somewhere 1) Created the FileResource class: public class FileResource extends