Re: Session managment

2007-10-20 Thread Suad AlShamsi
So there is no improvement on the heavy session drawback?! Johan Compagner wrote: nothing changed about that. you still have to you detacheable models when using db data On 10/20/07, alshamsi [EMAIL PROTECTED] wrote: Hi, How does wicket 1.3 handle sessions differently than wicket 1.2?

Exception Handling

2007-10-22 Thread Suad AlShamsi
Hi All, I am working on a project and I am using wicket 1.3 for the view layer, spring for service layer, and oracle database. As you know there are two types of exception I need to take care of. One is the business logic exception thrown from the service layer and the other one is the

Re: dummy question, how to set wicket in Deloyment mode?

2007-10-23 Thread Suad AlShamsi
You can either override getConfigurationType() in the Application class @Override public String getConfigurationType() { return Application.DEPLOYMENT; } or you can set in in the web.xml init-param param-nameconfiguration/param-name

Re: Internationalization and Component orientation

2007-10-24 Thread Suad AlShamsi
Its working thank you so much. Jeremy Thomerson wrote: I haven't used the mechanism, but I believe that with all of your files (html / properties / etc), you should just be able to add the locale abbreviation to the end of the file to override the default content. For instance, if you can

OutOfMemoryError

2007-10-24 Thread Suad AlShamsi
Hi All, I am getting this error often since I started using Wicket?! Any idea what is the real cause for it?! *type* Exception report *message* *description* _The server encountered an internal error () that prevented it from fulfilling this request._ *exception*

Re: Logging to a File

2007-10-24 Thread Suad AlShamsi
Thanks Jan Kriesten wrote: How can I log to a file using log4j?! documentation is found here: http://slf4j.org/ there's a wrapped implementation for log4j. regards, --- jan. - To unsubscribe, e-mail: [EMAIL

Clearing Session

2007-10-24 Thread Suad AlShamsi
Hi All, After submitting a form the input data will be persisted in the database and the user will be directed to another page. How can I clear the input data from the session?! - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Clearing Session

2007-10-26 Thread Suad AlShamsi
javascript that clears the window history somehow. johan On 10/25/07, Suad AlShamsi [EMAIL PROTECTED] wrote: Your right, actually what I need is to stop the browser back button, which means I need to disable the default second cache, writting to the file system. How can I do so. Another question

Re: Clearing Session

2007-10-28 Thread Suad AlShamsi
call remove maybe the detach phase of the page is then putting it back in (Matej? do will support this still with all the new changes??) johan On 10/27/07, Suad AlShamsi [EMAIL PROTECTED] wrote: I am using wicket 1.3 bita4 and all what really need is whenever the user is navigating using

Spring Authenticated Web Application

2007-11-04 Thread Suad AlShamsi
Hi All, I am currently working on a project which uses Wicket as view layer and Spring as service layer, therefore my web application class extends Spring Web Application. I want to integrate Acegi in order to handle the security issues. I came across this article

Re: Spring Authenticated Web Application

2007-11-05 Thread Suad AlShamsi
Thanks alot I will check it out . Michael Sparer wrote: Hi, all steps required for integrating acegi into your wicket-app are described on http://cwiki.apache.org/WICKET/acegi-and-wicket-auth-roles.html. however you'll get problems if you want to chain multiple filters, especially the

Re: How can I switch page direction (LTR-RTL)?

2007-11-14 Thread Suad AlShamsi
In your html page you can use the set the dir attribute of the html tag to the direction you want html xmlns=http://www.w3.org/1999/xhtml; dir=ltr I believe you can do so automatically using the new attribute modifier. Regards Alshamsi nlif wrote: Hi all, I would like to be able to set

Re: Required RadioGroup

2007-11-16 Thread Suad AlShamsi
I added it .. Nothing changed?! I am still getting the same problem. Martijn Dashorst wrote: add: modes.setReuseItems(true); Martijn On 11/16/07, alshamsi [EMAIL PROTECTED] wrote: Hi All, I want to add the required validation on a RadioGroup component. I added the setRequired(true);

Re: Required RadioGroup

2007-11-16 Thread Suad AlShamsi
); group.setRequired(true); Martijn On 11/16/07, Martijn Dashorst [EMAIL PROTECTED] wrote: what version of Wicket are you working on? On 11/16/07, Suad AlShamsi [EMAIL PROTECTED] wrote: I added it .. Nothing changed?! I am still getting the same problem. Martijn Dashorst wrote: add

Re: Issue with Internationalization of Non ascii characters

2007-11-27 Thread Suad AlShamsi
I faced the same problem with Arabic character. I used native2ascii.exe to encode the property files and I used encoding=utf-8 in my html pages and then it worked. Regards, Suad abaijal wrote: Hi All I am new to wicket framework and am trying to implement internationalization for Russian

Re: How to get session from panel ?

2007-12-20 Thread Suad AlShamsi
Did you try to get it from the application. getApplicaion().getSession(); tsuresh wrote: Hello, I have Panel called MenuPanel and a page WelcomePage. When the user is authenticated through Login page the user is forwarded to WelcomePage. This WelcomePage consists of MenuPanel. How do I get the

Re: Where is DatePicker for 1.3 ?

2007-12-24 Thread Suad AlShamsi
You can find it in wicket-datetime.jar smallufo wrote: I am upgrading to Wicket 1.3 rc2 But found no DatePicker component. The only one I can find seems for 1.2.x http://sourceforge.net/project/showfiles.php?group_id=134391package_id=210945 Can somebody tell me where to find DatePicker for 1.3

Re: Bug in MultiFileUploadField

2008-01-05 Thread Suad AlShamsi
I was able to reproduce the same bug as well. I am using IE 6 Igor Vaynberg wrote: On Jan 5, 2008 1:03 AM, Franklin Antony [EMAIL PROTECTED] wrote: 1)If I enter some data in the file upload field and just move out(something like loose focus), then that entry I placed inside the text file