Re: Menu???

2007-08-04 Thread Eelco Hillenius
Any extension or work being done to create a javascript based menu in Wicket? I know in the old nabble there was discussion but that was over a year ago. Nope. I guess it doesn't itch enough for us, and we didn't get any contributions in the mean time that I know off. If I'd had some more

London Wicket Event - Tuesday, 7th August, 2007

2007-08-04 Thread jweekend
This has been posted to both the new and old wicket-user lists: There are still places available for our next London Wicket Event on Tuesday evening (7 August). These events are free (special thanks to http://ZOOMF.com ZOOMF.com for kindly hosting us), and anyone with an interest in Wicket is

Re: Menu???

2007-08-04 Thread Doug Leeper
Well I have the itch. As I am new to all this, where would I start if the menu menus were to utilize yui's menu? Is there is cheat sheet on how to create components? Thanks - Doug -- View this message in context: http://www.nabble.com/Menutf4213073.html#a11996192 Sent from the Wicket -

Resizing Table Columns Like Yahoo Mail

2007-08-04 Thread Ayodeji Aladejebi
Please does someone know of any javascript library that can be used to resize table columns via Drap or has someone implemented anything like dat here to share some knowledge of it thanks

Re: Resizing Table Columns Like Yahoo Mail

2007-08-04 Thread Paolo Di Tommaso
A light one http://webfx.eae.net/dhtml/collist/columnlist.html Or an advanced one http://extjs.com/deploy/ext/examples/grid/array-grid.html Paolo On 8/4/07, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: Please does someone know of any javascript library that can be used to resize table columns

Re: Menu???

2007-08-04 Thread James McLaughlin
I actually have a rough version of yui menu done in wicket-contrib-yui. It needs to be polished up quite a bit, which I have been intending on doing for about 5 months now. It works with yui 2.2.2 with the exception that you must strip wicket tags or else the yui menu parser barfs. Any help

Previous Page ref. in PageParameters

2007-08-04 Thread Gumnaam
Can a ref. to the previous page be passed via PageParameters. What I am trying to do is have a BookmarkablePage The PageParameters if contain a ref. to previous field, will display a go back link. I can pass the prev page as a ref. in the constructor, but then the page is not bookmarkable, I

Re: Resizing Table Columns Like Yahoo Mail

2007-08-04 Thread Eelco Hillenius
Or an advanced one http://extjs.com/deploy/ext/examples/grid/array-grid.html That's sweet! Eelco - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Get Page Title Contents

2007-08-04 Thread Joe Toth
I have a component that needs the page title of any page its on. Is there an easy way to get that without making the page title a wicket component on every page? Is parsing the rendered page my only option? Thanks! - To

Re: Get Page Title Contents

2007-08-04 Thread Crash_neo
I did forget to mention that you do have to set the title yourself. :-) If you want to get it from a page that is not build in wicket. (the title is not set by wicket) then it's a different story, and you'll have to ask someone else ;-) Thijs wrote: Why not make some basepage you extend from