Re: yui calendar in IFRAME on IE7

2007-12-15 Thread Per Newgro
Hi *, i have again the same issue (with other browsers to). I saw that the calendar is opened in different positions with different browsers. IE seems to open it to the right side of the image. Firefox opens it centered. Is there something in the calendar css i could use? Any hint is

Where is the required validator?

2007-12-15 Thread Joshua Jackson
Dear all, When I read the wicket wiki, for required validation we use RequiredValidator class. But I can not find this class in wicket.jar and wicket-extensions.jar. Have I missed out on something that I should have read here? Thanks in advance for the hint. :) -- I'm a coder not a

Re: Where is the required validator?

2007-12-15 Thread Martijn Dashorst
field.setRequired(true) On Dec 15, 2007 11:44 AM, Joshua Jackson [EMAIL PROTECTED] wrote: Dear all, When I read the wicket wiki, for required validation we use RequiredValidator class. But I can not find this class in wicket.jar and wicket-extensions.jar. Have I missed out on something

Re: Where is the required validator?

2007-12-15 Thread Joshua Jackson
Thanks it worked now :) On 12/15/07, Martijn Dashorst [EMAIL PROTECTED] wrote: field.setRequired(true) -- I'm a coder not a drag-n-dropper Blog: http://joshuajava.wordpress.com/ - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: How to send a non-html response ?

2007-12-15 Thread Joshua Jackson
I saw that there is a FileResponse class, but I still could not figure out how to use it. Has anyone figured out on how to use it? Thanks in advance On 12/13/07, wicket user [EMAIL PROTECTED] wrote: Create a YourResponsePage that extends Page instead of WebPage and set the appropriate

Re: The Textis incomprehensible

2007-12-15 Thread Gabor Szokoli
Hi! I do not know what could cause the difference between operation on Linux and on XP, (perhaps some locale is not installed) but here is a workaround you could try: On Dec 15, 2007 2:49 AM, JohnSmith333 [EMAIL PROTECTED] wrote: My wicket code in xp show normally. The text isn't

Wicket + Spring 2.5

2007-12-15 Thread Korbinian Bachl
Hi, im currently using ANT + IDE (EAR having EJBapp + WEBapp) to get my wicket apps started, but somehow I looked at the new spring 2.5 and it seems interesting to me (same possibilities but no big appserver needed)... can anyone post a example app or structure to me where I can see how to

Re: Wicket + Spring 2.5

2007-12-15 Thread James Perry
For an example app for Spring 2.5, download the full distrubution jar with dependencies; which contains ample sample apps. To understand how Wicket and Spring can be integrated and its implications, go to: http://cwiki.apache.org/WICKET/spring.html. As for a wicket app that uses Spring:

Re: Help for custom textfield component w/ javascript

2007-12-15 Thread Johan Compagner
That should work fine then. The field should in initModel find the compound and then get the stdid property of that. Debug it a bit better or make a quickstar On 12/13/07, freak182 [EMAIL PROTECTED] wrote: Yes.i have a webpage and there is a form there the that access it. like the following

Re: Wicket + Spring 2.5

2007-12-15 Thread Advanced Technology®
Take a look of appfuse light 1.8.1, there is a Wicket 1.3 + Spring 2.5combination. https://appfuse-light.dev.java.net/ Good Luck AT 2007/12/15, Korbinian Bachl [EMAIL PROTECTED]: Hi, im currently using ANT + IDE (EAR having EJBapp + WEBapp) to get my wicket apps started, but somehow I

Re: The Textis incomprehensible

2007-12-15 Thread Landry Soules
If you program with Eclipse, make sure that text file encoding (preferencesgeneralworkspace) is set to UTF-8. JohnSmith333 a écrit : My wicket code in xp show normally. The text isn't incomprehensible. But when I deploy the code to linux os and in weblogic ap server. The text from db

How to make a WebPage Application aware?

2007-12-15 Thread chickabee
Hi Guys, I have a tomcat webapp with two Wicket Applications, say A and B. Now, if I create a bookmarkable link in application A for a WebPage which actually belongs to application B then it balks out for obvious reasons. I wonder if there is a way to make a WebPage application aware, so that

Re: GWT + Wicket

2007-12-15 Thread chickabee
Yes, you are right Dan, comparing GWT and Wicket is like comparing apples and oranges. In theory you can have complete website using GWT, but here are the pitfalls: 1. With GWT your site will not be indexed in search engines because you have only one page for the whole website and the contents

Re: How to make a WebPage Application aware?

2007-12-15 Thread Gabor Szokoli
On Dec 15, 2007 9:41 PM, chickabee [EMAIL PROTECTED] wrote: I have a tomcat webapp with two Wicket Applications, say A and B. Now, if I create a bookmarkable link in application A for a WebPage which actually belongs to application B then it balks out for obvious reasons. I'm not sure I

Re: How to make a WebPage Application aware?

2007-12-15 Thread chickabee
Hi Gabor, Thanks for your sincere reply, I can certainly understand the concept you suggested. At present I am using the property file instead as a work around and showing the cross application urls by using the plane o Labels, it's working well. However, still I wondered that this might very

Re: Session.invalidate()

2007-12-15 Thread Johan Compagner
Wont that just result in page expire?? Session.invalidat() doesnt invalidate at that time but at the end of the request I see 2 options Session.invalidat() setResponsePage(new mypage()); setRedirect(false) Or Session.invalidat() setResponsePage(mypage.class); setRedirect(true) On 12/15/07,

Re: Session.invalidate()

2007-12-15 Thread Igor Vaynberg
right, i meant to say setresponsepage(mypage.class) :) -igor On Dec 15, 2007 3:30 PM, Johan Compagner [EMAIL PROTECTED] wrote: Wont that just result in page expire?? Session.invalidat() doesnt invalidate at that time but at the end of the request I see 2 options Session.invalidat()

Two home pages?

2007-12-15 Thread Cristina
Hello, I'm working on an app where users and admins will perform mutually exclusive use cases. That's quite a common situation. It looks like the simpler approach here would be to return one home page with the user menu and another one with the admin menu. The choice would be placed in the Login

Re: Two home pages?

2007-12-15 Thread Igor Vaynberg
probably easier to factor out those two pages into panels and have a single homepage that shows the right panel. -igor On Dec 15, 2007 8:44 PM, Cristina [EMAIL PROTECTED] wrote: Hello, I'm working on an app where users and admins will perform mutually exclusive use cases. That's quite a