tooltip in wicket 1.4

2009-08-11 Thread srinivas
Hi, I have to add tool tip for label in wicket 1.4, how can i implement this. I have Student Name, if a place mouse on that i have to show his details can any one help regarding this. Thanks in Advance. Regards, Srinivasa Raju CH. Get your world in your inbox! Mail, widgets, documents,

Re: Problems with session after modifying code

2009-08-11 Thread Daniel Dominik Holúbek
Ok,i've found out that i need to delete the JSESSIONID cookie after refreshing bundles. is there any way to do that programatically? thx On Mon, Aug 10, 2009 at 5:40 PM, Daniel Dominik Holúbek dankodo...@gmail.com wrote: Hello,i'm developing a webapp combining osgi (equinox) and wicket. it

Re: tooltip in wicket 1.4

2009-08-11 Thread Martin Funk
hmmm how about: http://www.google.com/search?q=wicket+tooltip mf 2009/8/11 srinivas srinivas.r...@sifycorp.com Hi, I have to add tool tip for label in wicket 1.4, how can i implement this. I have Student Name, if a place mouse on that i have to show his details can any one help

Re: setResponsePage() Not Working

2009-08-11 Thread Per Lundholm
Don't know if I am making a fool of myself here but isn't the first ?wicket part of the jessionid? The jsessionid is generated by the container, right? Try changing the settings for that and see if something becomes different. /Per On Tue, Aug 11, 2009 at 3:28 AM, Jeff Longland

DefaultDataTable gets no CSS styling

2009-08-11 Thread Lukas Wilczek
Hi, I'm trying to use a DefaultDataTable and it shows with correct data but it has no styling at all. When I view source in the browser I can't see any CSS file that has been added to the markup (apart from my own and the one for ModalWindow). I've looked through the source folders for Wicket

Re: Get all sessions and manipulate them

2009-08-11 Thread uud ashr
I don't know. Asked many times but maybe not so popular. I can't find it easily. Do I have to save it manually all available session by creating class implementing ISession store? Or there is another way? Regards, uudashr On Tue, Aug 11, 2009 at 11:36 AM, Jeremy Thomerson

Re: Problems with session after modifying code

2009-08-11 Thread reiern70
Maybe invalidate the HTTP sessions? So, that users will have to log-in again. Can you post a stack trace of the error you get? I remember having similar class cast exceptions because OSGi class loading, but they all banished after using the buddy class loading of equinox... But maybe your

Re: Problems with session after modifying code

2009-08-11 Thread Daniel Dominik Holúbek
This is the stack trace: Servlet.service() for servlet equinoxbridgeservlet threw exception java.lang.ClassCastException: sdb.ziwhat.megaweb.core.ZiwhatSession cannot be cast to org.apache.wicket.Session at

Re: setResponsePage() Not Working

2009-08-11 Thread Jeff Longland
It doesn't seem to be a session problem. If I take off the first ?wicket: in the URL, it will correctly load the ResultPage - so the session is still valid. I'm continuing to scratch my head as to why there are two ?wicket params in the URL... Very frustrating. On Mon, Aug 10, 2009 at 4:32 PM,

RE: submit a form using ajax

2009-08-11 Thread Russell Simpkins
I haven't done this, but if I were trying to post every 30 seconds, i would use the setInterval ( expression, interval ) function. One way to add javascript in your form is to implement: protected IAjaxCallDecorator getAjaxCallDecorator(). I think the suggestion was to look at the code in

Using Wicket in a Java EE 6 container

2009-08-11 Thread Arun Gupta
I wrote a blog describing how to use Wicket with a Servlet 3.0/Java EE 6 container: http://blogs.sun.com/arungupta/entry/totd_91_applying_java_ee Any chance the changes can be integrated in the wicket-*.jar ? -Arun -- Need Application Server ? - Download glassfish.org Blog:

Re: InputStreamResource

2009-08-11 Thread Martin Makundi
See http://cwiki.apache.org/WICKET/showing-a-remote-image-on-wicket-site.html for similar example ** Martin 2009/8/11 Edgar Merino donvo...@gmail.com: Hello, what would be the correct way to render an image (Resource) from an InputStream? Right now I've got a very simple extension of the

Re: Using Wicket in a Java EE 6 container

2009-08-11 Thread Major Péter
Hi, great article, but I have one concern: If the wicket team puts the web-fragment.xml in the library, then the application classname must be the same for every single wicket app? Or is it possible to override this parameter somewhere? Regards, Peter 2009-08-11 14:46 keltezéssel, Arun

Re: Using Wicket in a Java EE 6 container

2009-08-11 Thread Cserep Janos
My understanding of Servlet 3.0 would suggest that if you want to go without xml files, you would subclass WicketFilter and add @ServletFilter and @InitParam annotations to your filter class. j 2009/8/11 Major Péter majorpe...@sch.bme.hu: Hi, great article, but I have one concern: If the

Re: Problem with Palette

2009-08-11 Thread Elad Katz
I don't want to nag - but does anyone have any type of lead on this? or should i just toss the palette and assume this is a bug in the implementation of it? Elad Katz wrote: Does anybody have any ideas? Elad Katz wrote: egolan74 wrote: I guess you've checked that selectedEvents

Re: tooltip in wicket 1.4

2009-08-11 Thread francisco treacy
Or this one: http://lmgtfy.com/?q=wicket+tooltip Francisco 2009/8/11 Martin Funk mafulaf...@googlemail.com: hmmm how about: http://www.google.com/search?q=wicket+tooltip mf 2009/8/11 srinivas srinivas.r...@sifycorp.com Hi, I have to add tool tip for label in wicket 1.4, how can

Re: DefaultDataTable gets no CSS styling

2009-08-11 Thread Igor Vaynberg
you are supposed to provide your own css -igor On Tue, Aug 11, 2009 at 1:35 AM, Lukas Wilczeklukas.wilc...@gmail.com wrote: Hi, I'm trying to use a DefaultDataTable and it shows with correct data but it has no styling at all. When I view source in the browser I can't see any CSS file that

Re: Using Wicket in a Java EE 6 container

2009-08-11 Thread Igor Vaynberg
dont think so because a) not everyone wants to name their application class org.glassfish.samples.WicketApplication b) not everyone wants to use /* mapping i havent read the spec yet but just from looking at the article this is a little troubling from security perspective. just because i add a

Re: Problem with Palette

2009-08-11 Thread Igor Vaynberg
if you think something is a bug you are more then welcome to create a jira issue with an attached quickstart. -igor On Tue, Aug 11, 2009 at 7:14 AM, Elad Katze...@xtify.com wrote: I don't want to nag - but does anyone have any type of lead on this? or should i just toss the palette and assume

Re: setResponsePage() Not Working

2009-08-11 Thread Jeff Longland
In my quest to solve this problem, I'm mounting all my pages using HybridUrlCodingStrategy to see if that will negate the extra ?wicket param in the URL. Worked fine on GlassFish, but as soon as I moved it over to Sun App Server 7 I got: Exception in rendering component: [MarkupContainer

Re: Problem with Palette

2009-08-11 Thread Eyal Golan
I meant, maybe your choices model is not what you think it is. I use the Palette in several locations, and didn't have this kind of problem. Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please don't print this

Re: setResponsePage() Not Working

2009-08-11 Thread bferr
So it looks like it has a problem rendering your stylesheet in the header of the page. The exception is really due to: Caused by: java.lang.IllegalArgumentException: ../../../../../../resources/ca.uwo.owl.gradeexport.PublicPage/style.css at

Re: submit a form using ajax

2009-08-11 Thread bferr
Could you try using an OnChangeAjaxBehavior with a setThrottleDelay(). Juri Prokofiev-2 wrote: I'm trying to save form values every 30 seconds and for this purpose I use AbstractAjaxTimerBehavior class, but can't figure out how to get the form values if submit button wasn't pressed?

Re: Changing a Form's Model

2009-08-11 Thread bferr
It sounds like you have different entitiy models for each DDC option right? That's why you are replacing the model of the form each time? I think you could try creating a fragment for each DDC option and each fragment would have it's own model. Then replace the fragment inside the form when

Re: ListView inside Form: retrieving the listview's model

2009-08-11 Thread bferr
The model of your listView has to be LoadableDetachable so that the listView retrieves the new list values each time. Also the setReuseItems() might have to be false. I don't think you're doing form validation within the ListView correct? Marcel Bonnet wrote: Hi everybody, I'm new in

Re: After update from 1.3.5 to 1.3.7 my css-images are not found

2009-08-11 Thread Per Newgro
Sould i reopen the bug in jira? Cheers Per - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Wicket in portalt environment

2009-08-11 Thread Vivek Kumar
Hi In which portal server you are testing your wicket portlet ? Try to test on jetspeed 2.2.0. Jetspeed 2.2.0 has lot of wicket portlet in it. On Tue, Aug 11, 2009 at 9:13 PM, Pieter van der Meer pie...@pieni.nlwrote: Hi, Is there anyone that has experience with running a Wicket portlet in

cwiki code blocks render poorly on firefox, chrome, safari

2009-08-11 Thread Troy Cauble
I couldn't find a place on the wiki to point this out, so FYI, many of the wiki pages have code blocks that render poorly on firefox, chrome safari (all on the Mac). For example, http://cwiki.apache.org/WICKET/dropdownchoice-examples.html I see code blocks with nested scrollpanes and the

Re: setResponsePage() Not Working

2009-08-11 Thread Per Lundholm
You shouldn't need to mount anything. Did you try to reconfigure the app server? Typically, use cookies instead of url rewrite+ On Tue, Aug 11, 2009 at 6:23 PM, Jeff Longland jeff.longl...@gmail.comwrote: In my quest to solve this problem, I'm mounting all my pages using

AjaxFormValidatingBehavior not calling setOutputMarkupId

2009-08-11 Thread Ryan
Is there a reason AjaxFormValidatingBehavior does not call setOutputMarkupId(true)? Seems like it would be something it might do while visiting the form children. Thanks, Ryan - To unsubscribe, e-mail:

Re: setResponsePage() Not Working

2009-08-11 Thread Edward Zarecor
On Tue, Aug 11, 2009 at 12:23 PM, Jeff Longland jeff.longl...@gmail.comwrote: In my quest to solve this problem, I'm mounting all my pages using HybridUrlCodingStrategy to see if that will negate the extra ?wicket param in the URL. Worked fine on GlassFish, but as soon as I moved it over to

Re: submit a form using ajax

2009-08-11 Thread Toscano
Hi, Finally I found a solution that works for me, just in case it is good for someone else: I added an AjaxFormComponentUpdatingBehavior onkeyup to all the fields in the form (actually just two), and I added an AbstractAjaxTimerBehavior to the page which will look for changes in the values and

Re: Dynamic Select and SelectOptions

2009-08-11 Thread Raghu Kasturi
Excellent, works perfect. But the only change is instead of getModelObjectAsString() use getDefaultModelObjectAsString(). Very good idea, but the only problem is if I have 7 option groups with each option group with 5-6 options HTML will be really long. Thanks, Raghu tbt wrote: homar70