AW: Eclipse-IDE Plugin Wicket Bench not existing (any more)?

2012-03-24 Thread Stefan Lindner
It's dead. Someone tried to continue i tat http://sourceforge.net/projects/stump/ but no release is available. -Ursprüngliche Nachricht- Von: Ben Stover [mailto:bxsto...@yahoo.co.uk] Gesendet: Samstag, 24. März 2012 01:32 An: Wicket Users Betreff: Eclipse-IDE Plugin Wicket Bench not

AW: Is there a GUI Builder for Wicket which generates Wicket java code?

2012-03-24 Thread Stefan Lindner
There are a lot of GUI builder tools for Wicket. Any visual HTML editor will do what you need. You write HTML files and connet them with java code via Wicket:id=someId attributes in your html. Not Java generatest he GUI, the GUI is generated by a HTML Designer (man or machine). The programming

Re: Is there a GUI Builder for Wicket which generates Wicket java code?

2012-03-24 Thread Pierre Goupil
Or you can try the scaffolding approach: http://wicketopia.sourceforge.net/scaffold.html http://level2crm.com/content/building-scaffoldling-wicket This is not precisely GUI builders but they can help speed up your development. Regards, Pierre Goupil On Sat, Mar 24, 2012 at 2:13 PM, Stefan

mouseover in wicket

2012-03-24 Thread Dan12321
Hello, is possible to create mouseover and show tooltip (wicket panel with html) when I move cursor over html element/text/link. Is there any way how to do it in wicket? Thanks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/mouseover-in-wicket-tp4501543p4501543.html

Re: mouseover in wicket

2012-03-24 Thread Pierre Goupil
There's a project called jwicket-tooltip in wicketstuff. If you don't mind using jQuery, this could be a good spot. But a js lib just for that may be overkill as well. Have a look at wicketstuff-minis too, it may be more lightweight. Regards, Pierre Goupil On Sat, Mar 24, 2012 at 4:53 PM,

Re: mouseover in wicket

2012-03-24 Thread Josh Kamau
Also look at Visural wicket project. It has some nice tootips. http://code.google.com/p/visural-wicket/ http://wicket.visural.net/examples/ Josh On Sat, Mar 24, 2012 at 7:14 PM, Pierre Goupil goupilpie...@gmail.comwrote: There's a project called jwicket-tooltip in wicketstuff. If you don't

ModalWindow accessibility - DIV placeholder not used

2012-03-24 Thread lukuperman
Hello, I inherited an application that uses Apache Wicket 1.4.15. Everything works fine, but because of accessibility standards I have to address some findings we received from DQA team, which includes missing wai-aria attributes around to the modal windows. However I noticed the DIV placeholder I

Re: After upgrading from wicket 1.5.0 to 1.5.1+ we have a simple problem

2012-03-24 Thread Bas Gooren
Martin, Thanks for your pointer. This is indeed the reason for the loop: no buffered response is found. Something must have changed between 1.5.0 and 1.5.1 regarding (session) cookies and continueToOriginalDestination(), since it is no longer setting a session cookie. For all our

Re: Is there a GUI Builder for Wicket which generates Wicket java code?

2012-03-24 Thread James Carman
Wicketopia also allows you to use the same components used by the Scaffold component to build up the display by hand. Basically, you can use it at any level of abstraction you want. On Sat, Mar 24, 2012 at 10:42 AM, Pierre Goupil goupilpie...@gmail.com wrote: Or you can try the scaffolding

Re: After upgrading from wicket 1.5.0 to 1.5.1+ we have a simple problem

2012-03-24 Thread Bas Gooren
After more debugging, I learned some new things about wicket. It appears that an invisible stateful link makes a page stateful. The base page for this application contains a username label + logout link (stateful), which are in a WebMarkupContainer which is invisible if the user is not logged

Re: parent dimensions

2012-03-24 Thread Martin Makundi
Yes, look at jquery.height() and jquery.width() ** Martin 2012/3/24 mlabs mlabs@gmail.com: is there a way to discover the dimensions of a parent component as it is rendered in the browser? I want to dynamically size a component based on its parents dimensions... TIA -- View this

Mixing Wicket + JQuery + JQueryUI to achieve infinite scroll.

2012-03-24 Thread Mark
Unfortunately I am a beginner to Wicket and looking for for guidance on integrating Wicket + JQuery + JQueryUI in a way to achieve infinite scroll. Ideally I would aim to achieve something like the following url that allows you to inject divs that contain both images and text into the page:

Re: parent dimensions

2012-03-24 Thread Dan Retzlaff
A general mechanism for communicating the size back to the server was discussed a few days ago. Just thoughts though. http://mail-archives.apache.org/mod_mbox/wicket-users/201203.mbox/%3c1331219219831-4456657.p...@n4.nabble.com%3E On Sat, Mar 24, 2012 at 2:10 PM, mlabs mlabs@gmail.com wrote: