Re: [Wicket-user] enum not serializable?

2007-07-17 Thread verbal evasion
noobness. thanks for the help. verbal On 7/16/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 7/16/07, verbal evasion [EMAIL PROTECTED] wrote: yeah. i want to, but i dont see where i'm storing values(). i'll keep looking. must be somewhere. I take it you are using Wicket 1.2, right? 1.3 should

[Wicket-user] line break after ImageMap?

2007-07-16 Thread verbal evasion
i had two images side by side, both inside the div tag. then i made the left one an ImageMap and the second image (on the right) went to the next line. i tried to resize them and everything, but nothing helped. how do i fix this? thanks, verbal

[Wicket-user] enum not serializable?

2007-07-16 Thread verbal evasion
i have an enum that has a HashMapString, MyEnum in it. wicket is complaining that HashMap$Values is not serializable. am i doing something wrong or could there be a bug in wicket for serializing enums? thanks, verbal -

Re: [Wicket-user] enum not serializable?

2007-07-16 Thread verbal evasion
(RequestCycle.java:1084) at wicket.RequestCycle.request(RequestCycle.java:454) at wicket.protocol.http.WicketServlet.doGet(WicketServlet.java:219) On 7/16/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 7/16/07, verbal evasion [EMAIL PROTECTED] wrote: i have an enum that has a HashMapString, MyEnum

Re: [Wicket-user] enum not serializable?

2007-07-16 Thread verbal evasion
yeah. i want to, but i dont see where i'm storing values(). i'll keep looking. must be somewhere. thanks a lot, verbal On 7/16/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 7/16/07, verbal evasion [EMAIL PROTECTED] wrote: this is what i see. i wonder if there is a way to get a more

[Wicket-user] using images in wicket

2007-07-12 Thread verbal evasion
i am deploying my web application (including website using wicket) in an ear. there are files in the ear under the webapp/img directory and i would like to load them to use with Image and ImageMap. I dont know how to specify the path. i do not want to use the absolute FS path. i would like to

Re: [Wicket-user] using images in wicket

2007-07-12 Thread verbal evasion
to figure out the header of the URL from the current running context. thanks, verbal On 7/12/07, verbal evasion [EMAIL PROTECTED] wrote: i am deploying my web application (including website using wicket) in an ear. there are files in the ear under the webapp/img directory and i would like to load

Re: [Wicket-user] using images in wicket

2007-07-12 Thread verbal evasion
actually, doing url.getContent() doesnt seem to work. can someone please help me out? thanks, verbal On 7/12/07, verbal evasion [EMAIL PROTECTED] wrote: so i realized that i probably just want to access the image via a URL. the question now is i cant seem to access it with a relative page

Re: [Wicket-user] using images in wicket

2007-07-12 Thread verbal evasion
] wrote: I want to do it dynamically though. As in based on some logic, display 1 of n files. Thanks, verbal On Jul 12, 2007, at 7:13 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: On 7/12/07, verbal evasion [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: actually, doing url.getContent

[Wicket-user] dataview with scrollbar?

2007-07-08 Thread verbal evasion
i dont know if this is possible in wicket, but i am trying to find something like a dataview that will dynamically load content and place it in some sort of box that is a fixed size. if there are more items than the box will hold, then a scrollbar appears. i would also like to be able to select

Re: [Wicket-user] noob question about wicket

2007-06-14 Thread verbal evasion
the code i'm writing basically just resulted from my playing with the examples giving in the Pro Wicket book i got. then i wanted to write a basic site to play with things i can do. this is not anything that i've designed. just seeing what wicket is capable of. also, am i missing something? i do

Re: [Wicket-user] noob question about wicket

2007-06-14 Thread verbal evasion
! } if you alter your session data you have to call dirty Then you session wil be stored. johan On 6/14/07, verbal evasion [EMAIL PROTECTED] wrote: yeah i got it to work. it wasnt the code, it was some maven weirdness that was going on. i have a few more questions. currently, when i login, my

Re: [Wicket-user] noob question about wicket

2007-06-14 Thread verbal evasion
are you talking about the maven2 eclispe plugin? i am using maven1 right now so there isnt a good plugin for it. i'm working on moving to maven2, but maven2 kinda makes me feel gross. thanks, verbal On 6/14/07, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Wed, 13 Jun 2007, Eelco Hillenius

Re: [Wicket-user] noob question about wicket

2007-06-13 Thread verbal evasion
i tried implementing what you had put and i am stuck because loggedin and form are both in the highest scope of the websitem but in the java code, you have the form added to the loggedin WeMarkupContainer. that doesnt seem to fly with wicket unless i'm doing something wrong. i tried to take out

Re: [Wicket-user] noob question about wicket

2007-06-13 Thread verbal evasion
as the setResponsePage from the onSubmit? thanks, verbal On 6/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: the form is added to loggedout container, also notice that the form tag is inside a div wicket:id=loggedout so it matches the java hierarchy. -igor On 6/13/07, verbal evasion [EMAIL PROTECTED

Re: [Wicket-user] noob question about wicket

2007-06-13 Thread verbal evasion
to the screen. i have turned on debugging for wicket.Session in log4j, but all it prints is information about pages being dirty or not. any other debugging i can use or turn on? thanks, verbal On 6/13/07, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Wed, 13 Jun 2007, verbal evasion wrote: yeah i

Re: [Wicket-user] noob question about wicket

2007-06-13 Thread verbal evasion
the default behavior is for a session to be temporary? that doesnt make sense. this maybe another reason. i have my login code (basically everything you've seen) in an abstract BasePage class. I then call Index which extends BasePage. would that have anything to do with anything? thanks,

[Wicket-user] noob question about wicket

2007-06-12 Thread verbal evasion
hello everyone, this is my first post. i have been playing with wicket for a while, trying to see if it will let me do everything i want it to. while a lot of things in wicket look very attractive from a programmer-forced-to-do-website-stuff perspective, i do have one big glaring question. the

Re: [Wicket-user] noob question about wicket

2007-06-12 Thread verbal evasion
thanks for the responses from eelco and mchack. i appreciate it. i guess part of the problem is i dont understand enough html either :\. it seems that you have implied you can put anything in a span tag (e.g. a form and a label). i will look at the template more carefully. i bought the pro wicket

[Wicket-user] javascript internal scrollbar ?

2007-06-12 Thread verbal evasion
i noticed there were a bunch of ajax classes in wicket that generates javascript for you. very cool. is there a wicket extension or something that will allow me to create an internal scrollbar from java, without having to handwrite javascript in the html file? thanks, verbal