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
spare time, I'd love to take on YUI's menu.

Eelco

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 welcome. If our
last meeting is anything to go by, it should be informative and interesting
for anyone from total beginners to hard-core Wicket developers, architects,
project managers and anyone looking to use Wicket for business or pleasure.
After a brief welcome and introduction, Al Maw has offered to help attendees
with their Wicket issues so feel free to bring along your ideas/design/code
and, if you like, your laptop too.
If you would like to give a short presentation this time or in the future,
or have topic ideas you'd like to see covered, do let us know.
For details and registration see  http://jWeekend.co.uk jWeekend.co.uk  or 
http://londonwicket.org londonwicket.org  .
We hope you can join us.
Cemal
PS If there is enough interest, jWeekend will put together a Saturday
(09:30-19:00), intensive Introduction to Apache Wicket 1.3 course
(starting in late August or mid September) for people looking for a jump
start into Wicket. The material covered will include a healthy subset of our
full 2 day weekend introduction courses, for people who can't put aside a
whole weekend. Our site will have full details soon but if you have any
comments, ideas or would like to register your interest, drop us a line at 
http://jWeekend.co.uk jWeekend.co.uk .
-- 
View this message in context: 
http://www.nabble.com/London-Wicket-Event---Tuesday%2C-7th-August%2C-2007-tf4216247.html#a11995237
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 via Drap
 or has someone implemented anything like dat here to share some knowledge
 of
 it

 thanks



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 moving it forward would be greatly appreciated. In 2.3.0, yui
added added a feature where by you can retrieve menuitems by domId.
This will make the code significantly simpler. I also think the code
would benefit greatly from the addition of a menuevent/listener
pattern a la swing. Have at it and I will help anyway I can.

best,
jim

On 8/4/07, Doug Leeper [EMAIL PROTECTED] wrote:

 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 - User mailing list archive at Nabble.com.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 need to pass some sort of ref. to the current page, via PageParameters
and look it up in the next page's constructor.
some thing like
PrevPage p = getPageMap.get(pageParams.getString(prevPage))

any thoughts.

thanks


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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 webpage, ad a method 
getPageTitle() or something.

Then let al your pages extend from that basepage.
From any panel (maybe even component) you can do getWebPage(), cast 
this to your basepage class and you can get the title.


Thijs

Joe Toth wrote:

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 unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

  



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]