Re: New wicket blog by Wicket committers

2008-09-30 Thread jWeekend
Martijn, This is a great idea and site is evolving very nicely already. It's no great surprise that the book is doing so well - who knows, maybe you really will eventually get a holiday with the missus out of it! I bought another copy on Sunday, from the famous Foyles bookshop on Charing Cross R

Re: The Wicket difference ...?

2008-09-29 Thread jWeekend
Ashley, Take a look at chapter 1 of Wicket In Action (free download at http://www.manning.com/dashorst/). Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk Ashley Aitken wrote: > > > Howdy All, > > Just trying to explain to some colleagues how some of Wicket works > (diff

Re: wicket panels and parent class

2008-09-29 Thread jWeekend
Your Panel is just a Java class, so give it a constructor that takes the required object(s), or provide a setter if that wouldn't be too late (ie if the values are required during the panel's construction). Or, take a look at CompoundPropeprtyModel (maybe together with ComponentPropertyModel too d

Re: "WANG–Wicket Ajax Next Gene ration–being based on YUI" (MD)

2008-09-29 Thread jWeekend
VCandVisualStudio.aspx >> >> Jörn >> >> On Wed, Aug 27, 2008 at 1:05 AM, Matej Knopp <[EMAIL PROTECTED]> >> wrote: >>> On Wed, Aug 27, 2008 at 12:50 AM, Jörn Zaefferer >>> <[EMAIL PROTECTED]> wrote: >>>> On Tue, Aug 26, 2008 at 1

London Wicket Event - @Google on Wednesday

2008-09-26 Thread jWeekend
We have 40-45 people registered so far for our next London Wicket Event, at 18:30 on October 1st, where we have more professional, instructive and often quite interactive presentations lined up for our guests, invariably comprising of an interesting collection of skills and friendly personalities,

Re: Add a * (star) to a mandatory field

2008-09-17 Thread jWeekend
That example would be even more useful if it included the border's html in its "Behind he Scenes section: MyBorder.html (hopefully not too badly mangled by Nabble or your mail client) ... before the border contents after the border contents ... Regards -

1.3.5 The London Branch

2008-09-16 Thread jWeekend
Igor suggested that our London Wicket delegates would probably be quite keen to see 1.3.5 released. What do you think? If you are interested in meeting up somewhere in London that has a whiteboard (probably at http://maps.google.co.uk/maps?f=q&hl=en&geocode=&q=nw6+4pw&ie=UTF8&ll=51.539743,-0.194

Re: Wicket + jboss 4.0.5 + slf4j-log4j12 markup refresh problem issue

2008-09-11 Thread jWeekend
Lukasz, I agree that this is an irritating constraint JBoss, and others, inadvertently force on their users and it's a shame to lose time fiddling around with this stuff - but if that's your stack, then I guess you need a workaround, eg try Wicket 1.2.x (not what I would recommend). Have you as

Upcoming Wicket Training

2008-09-09 Thread jWeekend
Our next 6 scheduled, intensive Wicket courses are listed below. http://jweekend.com/dev/ContactUsBody/ Contact us for custom dates and/or content combined with our Java/Swing/OO/Spring/JPA course modules. http://jweekend.com/dev/JW703/ Apache Wicket (2 day) Sept 13,14 (Sat-Sun; limited bookin

Re: London Wicket Event - October 1st, @Google

2008-09-08 Thread jWeekend
f our space, kindly provided by Google. The schedule is at http://jweekend.com/dev/LWUGReg/ the usual place . Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk jWeekend wrote: > > The schedule for our next London Wicket Event (October 1st, @Google ) is > now taking

Google Chrome & Wicket

2008-09-02 Thread jWeekend
t the ball rolling, the jWeekend "Add To Cart" button on our http://jweekend.com/dev/BookingPage/ course booking page , that works well in all other browsers we have tried it in, is doing nothing in Google Chrome. The rest of the Ajax functionality tested so far seems to be OK. I'll

Re: how to mark "wicket html response" as "cacheable"?

2008-08-31 Thread jWeekend
One way is to override WebPage's setHeaders(WebResponse response) method and call setHeader on the passed in WebResponse. Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk ywtsang wrote: > > i want to set my html with "last modified date" in order to allow client > side caching

Re: ResourceStreamLocator is not testable using WicketTester?

2008-08-31 Thread jWeekend
Sasha, This was fixed recently. Try again with SNAPSHOT. Regards - Cemal http://jWeekend.co.uk http://jWeekend.co.uk Sasha Ovsankin wrote: > > Hi again -- > > I set custom ResourceStreamLocator in my application but when I test > using WicketTester my custom ResourceStreamLocator is not g

Re: @SpringBean injection -- why pretend?

2008-08-31 Thread jWeekend
;> Locatable dao= new Locatable("myDAO", MyDAO.class); >> Locatable dao= new Locatable("myDAO2", MyDAO2.class); >> >> vs >> >> @SpringBean MyDAO dao; >> @SpringBean MyDAO2 dao2; >> >> i still like springbean :) also, conside

Re: @SpringBean injection -- why pretend?

2008-08-31 Thread jWeekend
legant and hard to get just right in all cases >>> (for >>> example testing, serialization/deserialisation etc...). > > We will see, but so far I have a solution that is under 100 LOC, works > for me and saves me from debugging in the internals of CGLib. > > I will still re

Re: @SpringBean injection -- why pretend?

2008-08-31 Thread jWeekend
} > > class MyTest extends TestCase { > void setUp() { > MockLocator mockLocator= new MockLocator(); > MyDAO dao= new MyDAO(...); > mockLocator.put("dao", dao); > Locator.register(mockLocator); >

Re: @SpringBean injection -- why pretend?

2008-08-31 Thread jWeekend
Are you planning on serialising your DAOs? How will you mock out your "Locator" for unit tests? Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk Sasha O-2 wrote: > > Dear All -- > > I was having an issue with @SpringBean injection -- my dao class was not > initialized proper

Re: Clicking "add to cart" repeatedly

2008-08-31 Thread jWeekend
Does this happen under jetty too? To try this you can use mvn jetty:run or from your IDE run Start Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk wil2008 wrote: > > Sorry. The complete stack trace shown on the web page is as follows. I > noted that > they mirrored wh

Re: Wizard question

2008-08-30 Thread jWeekend
Edward, You could try something like: class Step1 extends WizardStep { public Step1() { super("Step 1", "How many?"); add(new TextField("numberOfThings")); } }; class Step2 extends WizardStep { public Step2() { super("Thing

Re: getDefaultModel

2008-08-28 Thread jWeekend
is is a bit > tricky...something to think about for 1.5. > > -igor > > On Thu, Aug 28, 2008 at 7:30 AM, jWeekend <[EMAIL PROTECTED]> > wrote: >> >> In Wicket 1.4m3, what does the "Default" in Component's new >> getDefaultModel() >

getDefaultModel

2008-08-28 Thread jWeekend
In Wicket 1.4m3, what does the "Default" in Component's new getDefaultModel() method mean. I don't want to reignite the generics debate; this is just a question about good naming. This name makes it sound like all components are initialised with a "default" model in place, or it could possibly be

Re: London Wicket Event - October 1st, @Google

2008-08-28 Thread jWeekend
we're expecting another big turnout so register early (and don't forget to confirm/cancel your place using the link in the automated response). Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk jWeekend wrote: > > This is to confirm our next London Wicket

"WANG–Wicket Ajax Next Genera tion–being based on YUI" (MD)

2008-08-26 Thread jWeekend
Matej, What are the implications of the decision to "base Wicket Ajax Next Generation on YUI" in terms of choosing a Javascript library for future Wicket based web front ends? We too were tending towards jQuery, mainly because + code based on jQuery can be quite terse yet still easy to read an

Re: CheckGroup updateModel() bug?

2008-08-21 Thread jWeekend
grammer :-) > > jk > > On Thu, Aug 21, 2008 at 12:32:00PM -0700, jWeekend wrote: >> >> Ritesh, >> >> I wouldn't call it a bug because the model is updated, albeit indirectly, >> but perhaps in a slightly inconsistent way as you've poin

Re: CheckGroup updateModel() bug?

2008-08-21 Thread jWeekend
etObject() of the adapter Model class and > was expecting that setObject be called - which I think would have been > called if setModelObject(collection) was there in the else block. When I > get a chance I will modify the code to see if that is the case but for now > I have a work around.

Re: Wicket merchandise?

2008-08-21 Thread jWeekend
The "killer app" carrying that logo would be a black baseball cap. And, talking of killer apps, how about an open source Wicket shopping framework? Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk Matej Knopp-2 wrote: > > I could imagine wearing that on a tshirt :) > One more

Re: CheckGroup updateModel() bug?

2008-08-21 Thread jWeekend
Ritesh, There is no need for the else block in the code you have included to call setModelObject as it will only be exercised if there is a collection set already. Double check that somewhere in your code you are not explicitly or implicitly setting the modelObject to null or setting the model t

London Wicket Event - October 1st, @Google

2008-08-20 Thread jWeekend
This is to confirm our next London Wicket Event (kindly hosted by Google) will be on October 1st. Just mark your diary for now, the sign up page will be updated in the next few days (so you can register then) by which time I should have some more interesting presentations to tell you about, on to

Re: Help needed - ListView.onPopulate IndexOutOfBoundsException

2008-08-20 Thread jWeekend
ed before it is rendered completely. So, the real solution is to > prevent this from happening. Synchronization? Where? How? > > Regards, > Tony > > > > jWeekend wrote: >> >> Tony, >> >> On your ListView, try setReuseItems(true) and force a remo

Re: Help needed - ListView.onPopulate IndexOutOfBoundsException

2008-08-19 Thread jWeekend
stViews are working just > fine. I suspect it is the AjaxSelfUpdatingTimerBehavior which is causing > the problem, but I don't know exactly the root of it and how to work > around with this problem. > > Regards, > Tony > > > jWeekend wrote: >> >> tf

Re: Help needed - ListView.onPopulate IndexOutOfBoundsException

2008-08-19 Thread jWeekend
tfu, What does your populateItem implementation (conveniently dotted out ;-) look like? Are you looking for an element (with index = 23) in the ListView's backing ArrayList that does not (no longer) exist(s). Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk tfu wrote: > > I'

Re: 2 questions on Include

2008-08-19 Thread jWeekend
e for the dumbness of my questions ;-) > > Thanks again > > Best regards > > > Landry > > > > 2008/8/19 jWeekend <[EMAIL PROTECTED]> > >> >> Landry, >> >> Component has a replaceComponentTagBody(markupStream, openTag, co

Re: 2 questions on Include

2008-08-19 Thread jWeekend
false)); > > > But how can i inject my modified content back to my component ? > > Best regards. > > > Landry > > > > 2008/8/19 jWeekend <[EMAIL PROTECTED]> > >> >> Landry, >> >> 1 - setEscapeModelStrings(false) >&g

Re: 2 questions on Include

2008-08-18 Thread jWeekend
Landry, 1 - setEscapeModelStrings(false) 2 - Subclass Include. Override onComponentTagBody and use importAsString() Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk landry soules wrote: > > Hello, > > In my firm, we're currently using a homegrown component-like framework, >

Re: color code options in drop down choice

2008-08-09 Thread jWeekend
Take a look http://jweekend.com/dev/ArticlesPage/ here , at the "Wicket Select And SelectOption" presentation (roughly about half way through). Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk fulltoos wrote: > > hi > I want to have a dropdown choice in which some of the choic

Re: 7th August London Wicket Event (6th August!)

2008-08-07 Thread jWeekend
ents we are currently enjoying. Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk PS To those who were present on August _6th_ (I don't know what event on the 7th you got us mixed up with Yiannis, but we'll accept the compliments ;-) , don't forget to send http://jweeke

London Wicket Event - Wednesday, 6th August @ Google

2008-08-04 Thread jWeekend
Places are available on our London Wicket Event (generously hosted by Google) on Wednesday evening. Join us for some very interesting, high quality presentations and to chat with fellow Wicket developers. More details and registration http://www.jWeekend.co.uk here . Regards - Cemal http://www.j

Re: wicket-guice Questions

2008-07-24 Thread jWeekend
Karl, re your point 1; I haven't looked at Guice, but if it has similar features to Spring, you could consider the following strategies: i) mark your bean for lazy instantiation (and first ask for the instance only once the Wicket app is in the desired state). ii) use some sort of proxy that you

Re: [ANN] Brix 1.0 beta1

2008-07-23 Thread jWeekend
Igor, This looks like it's fast becoming another high quality and useful piece of well conceived, professional equipment in the Wicket application developer's arsenal. I've been keeping an eye on the project's progress, via SVN, and how fast you guys have got this far has been impressive. If any

Re: @SpringBean vs @Configurable

2008-07-22 Thread jWeekend
Rik, Also see http://jira.springframework.org/browse/SPR-4302 Regards - Cemal http://www.jWeekend.co.uk http://jWeekend.co.uk Rik van der Kleij-2 wrote: > > Is it right that also userspage is also not serializable because > userservice > is not serializable (not a proxy)? > > Regards, > Ri

Re: @SpringBean vs @Configurable

2008-07-21 Thread jWeekend
@Configurable is used to enable Spring to inject dependencies into a non-Spring-managed object ie into an object Spring doesn't control the lifecycle of, and in particular, one that Spring does not create for you (eg the developer, and not Spring, uses the new keyword and a constructor, or some fa

Re: wicket jobs in toulouse, france?

2008-07-18 Thread jWeekend
Francisco, If you'd like to http://jweekend.com/dev/ContactUsBody/ send us a note , I'll pass your details on to our partners in Paris, who, if I remember correctly, have a couple of clients in or around Toulouse. Regards - Cemal http://www.jWeekend.com http://jWeekend.com francisco treac

Re: London Wicket Event, August 6 at Google, London

2008-07-15 Thread jWeekend
not be sure if we're offering a good way to spend an evening! jWeekend wrote: > > Al and I would like to invite those of you that can get to London on > August 6 to our next London Wicket Event at Google's London office - > thanks to all involved at Google (especially Al) for ki

London Wicket Event, August 6 at Google, London

2008-07-10 Thread jWeekend
Al and I would like to invite those of you that can get to London on August 6 to our next London Wicket Event at Google's London office - thanks to all involved at Google (especially Al) for kindly hosting us and for the great support. We'll be posting details soon (we have some impressive presen

Re: London-based jWeekend Apache Wicket course, July 12 & 13th

2008-06-27 Thread jWeekend
ary of Al & I creating and starting up the jWeekend Wicket courses and the London Wicket Events (talking of which, lookout for an announcement soon if you're interested in investigating the use of Terracotta with Wicket, once we can confirm August 6th as our next event date). They'

Re: DefaultAbstractTree or BaseTree?

2008-06-24 Thread jWeekend
Kaspar, If you find class diagrams useful take a look at the " http://www.jweekend.com/dev/ArticlesPage/ Wicket Trees - Class Diagram " and let us know if these are interesting - I think we have a few more Wicket-internals UML diagrams (mainly class and sequence diagrams, and probably a couple of

Re: How can i use template in wickets

2008-06-19 Thread jWeekend
Sushant, Wicket makes providing a common look for pages very easy, providing you with a neat technique called " http://wicket.apache.org/examplemarkupinheritance.html markup inheritance ". If you prefer composition, look into using " http://cwiki.apache.org/WICKET/panel.html Panel "s and/or " ht

Re: styling option tag in dropdownlist

2008-06-18 Thread jWeekend
Mathias, I recently gave a short presentation on this subject. The slides are http://jweekend.co.uk/dev/ArticlesPage/ here if you're still interested in colourful options. It's quite concise, so feel free to get back to me if you need more details. Regards - Cemal http://jWeekend.co.uk http://

Re: wicket training/consulting in the SF Bay Area

2008-06-16 Thread jWeekend
Mohammad, We may be able to help. Contact us http://jweekend.co.uk/dev/ContactUsBody/ here to discuss your requirements. Regards - Cemal http://jWeekend.co.uk http://jWeekend.co.uk < quote author="m_salman"> Hi, Is there any one available to provide Wicket training and/or consulting in t

Stateless vs Stateful

2008-06-04 Thread jWeekend
continuing on from jwcarman's http://www.nabble.com/Re%3A--FINALISED-SCHEDULE--London-Wicket-Event-at-Google-UK%2C-tonight-p17644874.html post ... We do get questions directly about, or that turn out to be about "stateful vs stateless" in Wicket. One of my colleagues at jWeeke

Re: [FINALISED SCHEDULE] London Wicket Event at Google UK, tonight

2008-06-04 Thread jWeekend
ul > > On Wed, Jun 4, 2008 at 7:48 AM, jWeekend <[EMAIL PROTECTED]> > wrote: >> >> Here's the schedule for tonight: >> >> 18:15 Pizza >> 18:30 Cemal - Welcome, Schedule >> 18:35 Richard - "Wicket Overlay Panel For Google Maps" >&g

[FINALISED SCHEDULE] London Wicket Event at Google UK, tonight

2008-06-04 Thread jWeekend
Gallery" followed by a bit of Q&A and a trip to a local recreational establishment. Regards - Cemal http://jWeekend.co.uk http://jWeekend.co.uk jWeekend wrote: > > ... not to mention our free draw for 3 pre-paid > http://manning.com/dashorst/ "Wicket In Actio

Re: new wicket site live: online.ddpoker.com (+1 for generics)

2008-06-03 Thread jWeekend
Doug, Congratulations on getting your site into production so quickly - I hope it's a big success. It sounds like you are more than satisfied with your decision to choose Wicket for your presentation layer and importantly, it's especially encouraging to get a resounding thumbs up for all the har

Re: Reminder: London Wicket event at Google UK on Wednesday

2008-06-03 Thread jWeekend
... not to mention our free draw for 3 pre-paid http://manning.com/dashorst/ "Wicket In Action" MEAP licences. I've looked through all the presentations now (all except Al's that is), including Ian's talk on "Stateless vs Statefull" that we may also squeeze in as a bonus (time permitting) but th

Re: London Wicket Event - June 4th, at Google UK

2008-05-28 Thread jWeekend
you? It'll be a year since I tracked down Al and proposed setting this event up and so I will also be announcing some special news to celebrate our first full year of http://www.nabble.com/London-Wicket-Users-Group%2C-July-3rd---interested--p11129672.html Wicket events and http://www.jweeke

Re: FYI: new wicket site

2008-05-14 Thread jWeekend
Frank, Is there such a button (officially)? We just say "Built on Apache Wicket" at jWeekend. It's probably not a bad idea (from Wicket's perspective) to have an official image that can be used (or linked to), if there are no legal complications with Apache. Lars, Thanks

Re: encapsulation, extension and transparent resolvers

2008-05-12 Thread jWeekend
Making such general and potentially misleading comments on a public forum is not always the easiest way to get a *specific* problem you are faced with get addressed. If you are lucky enough to spend time on the Wicket IRC, based on my experience to date, the good people there would address such

Re: London Wicket Event - June 4th, at Google UK

2008-05-12 Thread jWeekend
Here's an update on our June 4th, London Wicket Event at Google (more details on our "Wicket In Action" draw etc ... in my original post, pasted below): http://faler.wordpress.com/ Wille Faler is going to talk about using the "Open Session In View" pattern with Wicket (I've just been over his hi

London Wicket Event - June 4th, at Google UK

2008-05-05 Thread jWeekend
I'm pleased to confirm that our next London Wicket Event will be held on June 4th, again at Google's London offices. We've been attracting a really nice crowd as well as encouraging and very positive feedback/reviews. If you' like to come along register (early) http://www.jweekend.co.uk/dev/LWU

Re: "Wicket in Action" (Amazon & MEAP)

2008-04-23 Thread jWeekend
. jWeekend does a fair amount of business with Manning, providing books for our students and at events we run and, occasionally even for clients using technologies on our projects Manning publish (very practical and generally highly regarded) books on. They have always been very helpful and positive

Re: If logic in wicket seems complicated

2008-04-21 Thread jWeekend
Doug, Take a look at Component's setRenderBodyOnly method if you sometimes need to render a link as plain text based on some condition (thanks Nilklas). This combined with Igor's tip could be one possible solution to the requirements you have mentioned, so far. On the http://jweekend.com/dev/LW

London Wicket Training - May 17,18 & June 21,22

2008-04-21 Thread jweekend
The next 2 scheduled Apache Wicket courses in London are on May 17,18 and June 21,22. http://jweekend.com/dev/ContactUsBody/ Send us a note if you need specially scheduled training on-site. We've also put some of the kind reviews we've been receiving since we started our intensive Wicket traini

Re: Notification on session destroyed?

2008-04-16 Thread jweekend
Using Object#finalize() for this type of thing is generally NOT a good idea; it may get called much later than you would "expect", if at all. Regards - Cemal http://jWeekend.co.uk Nino.Martinez wrote: > > Thanks for the example.. > > I just think it feels very weird to go around wicket in ord

Wicket In Action - London Wicket Event draw winners

2008-04-13 Thread jweekend
At our London Wicket Events since February, we have been holding a draw for http://chillenious.wordpress.com/ Eelco and http://martijndashorst.com/blog/ Martijn' s "Wicket In Action", which is pretty complete now and a great resource for any Wicket developer; the result of a great amount of wor

Tonight's London Wicket Event - Finalised Schedule

2008-04-02 Thread jweekend
The schedule for tonight is as follows: 18:30 Start (and a slice Pizza if you're there in time) Cemal Bayramoglu- Brief welcome, introduction and announcements 18:40 Ian Godman: Dojo and Wicket 19:30 Short break 19:40 Alastair Maw: Surprise topic (but I know what he's prepared, and I'm looking f

Re: London Wicket Event - Wednesday evening at Google

2008-04-01 Thread jweekend
ot or two you'd > like me to put up while you talk for 30 seconds, that's also fine - please > e-mail me with PNGs. > > I'm looking forward to seeing you all there. > > Best regards, > > Alastair > > > On Mon, Mar 31, 2008 at 1:56 PM, jweekend <

Re: London Wicket Event - Wednesday evening at Google

2008-03-31 Thread jweekend
unds like a name you would give some powerful framework. Regards - Cemal http://jWeekend.co.uk http://jWeekend.co.uk Jonathan Locke wrote: > > > With Google sponsoring Wicket meetings, I'm wondering if we might someday > see Wicket/GWT integration? > > > jweekend wrote:

London Wicket Event - Wednesday evening at Google

2008-03-31 Thread jweekend
Just a reminder that our next event is on Wednesday evening at Google's offices. You can register and keep an eye on full details http://jweekend.com/dev/LWUGReg/ here (some of you have not confirmed or cancelled yet - please do so as we need to fix security and manage the space available). Als

Re: London Wicket Training at Easter ... still 4 places left

2008-03-13 Thread jweekend
like to join us for 2 days of intensive Wicket training.Our students also get a MEAPs edition of Martijn jweekend wrote: > > Al and I are preparing for the London Wicket course coming up next week. > This http://jweekend.com/dev/JW035/ 2 day intensive Wicket course has > evolved

London Wicket Training at Easter ... still 4 places left

2008-03-12 Thread jweekend
wiki etc well ...) courtesy of jWeekend. If you are travelling far (still some 80% of our students travel from abroad), we can also try to help you fix some suitable accommodation. Regards - Cemal http://jWeekend.co.uk http://jWeekend.co.uk -- View this message in context: http://www.nabble.c

Re: Google hosting next London Apache Wicket User Group meet on Wednesday April 2nd.

2008-03-06 Thread jweekend
Al, Good news, thanks to you and your colleagues at Google - I hope some of them will be able to join us again as well. The http://jweekend.co.uk/dev/LWUGReg/ registration page is now ready for those of you who would like to come along. Please remember to click on the link in the automated ema

London Wicket Users Group Event

2008-02-29 Thread jweekend
rop us a line on the jWeekend "Contact" page. Regards - Cemal http://jWeekend.co.uk jWeekend.co.uk -- View this message in context: http://www.nabble.com/London-Wicket-Users-Group-Event-tp15764822p15764822.html Sent from the Wicket - User mail

Re: London Wicket Users Group Event

2008-01-31 Thread jweekend
://jWeekend.co.uk http://jWeekend.co.uk neo anderson wrote: > > May I forward this message to other people? I think that would be great > for developers who are also interested in such event. > > Thank you very much. > > - Original Message > From: jweekend <[EM

Re: Article: Introducing Apache Wicket

2008-01-29 Thread jweekend
Karthik, Thanks for the kind words. Just to put the record straight, it was one of our new developers at jWeekend, Dmitry Kandalov, that came back with the most useful parts of the feedback we gave when we reviewed your article and it's always a pleasure for us to try to help with anything

London Wicket Training discount (before Google Checkout charges start)

2008-01-27 Thread jweekend
The Wicket training courses in London, with http://herebebeasties.com/ Al Maw , are bookable using http://www.jweekend.com/dev/BookingPage/ our simple but effective Ajax cart (built on Wicket) with payments handled by Google Checkout. Since Google Checkout will globally start charging vendors

Re: Wicket Training Courses - London Q1 Schedule

2008-01-16 Thread jweekend
Cemal http://jWeekend.co.uk http:/jWeekend.co.uk jweekend wrote: > > Upcoming London Wicket training courses, with http://herebebeasties.com/ > Al Maw , our principal Wicket instructor, have been rescheduled as > requested by students coming from as close as just down the road in

Re: TreeGrid and DataGrid open source

2008-01-14 Thread jweekend
Matej, As I wrote a few weeks ago when you kindly let me have a first play with these great new components, I think you have done a high-quality piece of work that shows off some of Wicket's power and presented it in a professional way. Your gesture to now let people use it for free is a very nice

Re: London Wicket Event - Schedule/Bigger Room

2008-01-14 Thread jweekend
tion featuring http://herebebeasties.com Al , is useful and people say like the format. Regards - Cemal http://jWeekend.co.uk igor.vaynberg wrote: > > it would be great if you guys could videotape the talks and share them :) > > -igor > > > On Jan 12, 2008 2:33 PM, jweekend <[

Wicket Training Courses - London Q1 Schedule

2008-01-14 Thread jweekend
Upcoming London Wicket training courses, with http://herebebeasties.com/ Al Maw , our principal Wicket instructor, have been rescheduled as requested by students coming from as close as just down the road in London to as far as Kuala Lumpur! There are places available on all these courses - the s

Re: London Wicket Event - Schedule/Bigger Room

2008-01-13 Thread jweekend
wicket security framework? > > On 1/12/08, jweekend <[EMAIL PROTECTED]> wrote: >> >> We seem to be back up to the original interest levels again for our Feb >> 6th >> London Wicket Users Group event. As we had already pretty much hit our >> capacity for the fi

London Wicket Event - Schedule/Bigger Room

2008-01-12 Thread jweekend
We seem to be back up to the original interest levels again for our Feb 6th London Wicket Users Group event. As we had already pretty much hit our capacity for the first conference room we had booked with 4 weeks still to go, we have now booked a bigger room at Google that seats over 50 people (th

Re: Javascript call to wicket

2008-01-10 Thread jweekend
We can probably take a look and I am sure others will help once its up on the wiki. These may be useful references too: http://www.nabble.com/integrating-extjs-with-wicket-to14715123.html here and http://www.nabble.com/calling-javascript-function-on-wicket-component%27s-onclick-to14730927.html

Re: Javascript call to wicket

2008-01-08 Thread jweekend
This is an interesting and useful thread and goes over ground not too well covered elsewhere, afaics. Would it be worthwhile to get an authoritatively edited version up on the Wiki, maybe in the reference section? Regards - Cemal http://jWeekend.co.uk http://jWeekend.co.uk Pills wrote: > > Hel

Re: Changing the year of a DatePicker

2008-01-08 Thread jweekend
It would also be good to have a "Today" button (that may be invisible by default if it offends anybody). I'm sure I used a Wicket calendar component in the 1.2.? days that had this useful feature (by default). It would be even better to have a button that can say "Today" as default but that could

Re: Google to host the London Wicket Event ...

2008-01-08 Thread jweekend
ice to see many familiar names registering again this time! Make sure you register and confirm (via the automated email) early if you'd like to come along. Regards - Cemal http://jWeekend.co.uk http://jWeekend.co.uk jweekend wrote: > > I am pleased to announce that our next monthly

Google to host the London Wicket Event ...

2008-01-06 Thread jweekend
I am pleased to announce that our next monthly London Wicket Users Group event (February 6) will be generously hosted by Google (close to Victoria Station). Special thanks go to http://herebebeasties.com/ Al Maw for arranging this - he even mentioned something about sandwiches (tbc). Full presen

Re: London Wicket User Event

2008-01-04 Thread jweekend
think that would be great > for developers who are also interested in such event. > > Thank you very much. > > - Original Message > From: jweekend <[EMAIL PROTECTED]> > To: users@wicket.apache.org > Sent: Sunday, 30 December, 2007 9:51:35 PM > Subject: Lo

London Wicket User Event

2007-12-30 Thread jweekend
The next London Wicket Event will be on Wednesday, February 6th, 2008. Keep an eye on the http://www.jweekend.com/dev/LWUGReg/ registration page for the updates. http://herebebeasties.com/ Al Maw 's going to demonstrate creation of "an AJAXified drag and drop list editor". Ian Godman will tell

Re: File browser component in wicket

2007-12-24 Thread jweekend
If you wish to give the user the ability to browse your server's file-system (and you're comfortable with the security implications, permissions etc ...) you can hand one of Wicket's Tree (or TreeTable in Wicket extensions) implementations a TreeModel whose nodes are (or hold) folders/files that k

Re: Wicket posts missing on nabble

2007-12-20 Thread jweekend
Gwyn wrote: > > Sure, we like Nabble; we just don't have any more influence with it > that anyone else, so as far as reporting any issues go, (as far as I'm > aware), there's nothing we could do that anyone else couldn't equally > well do! > > /Gwyn >

Re: Wicket posts missing on nabble

2007-12-20 Thread jweekend
; tool the committers use to keep up with the users list. Despite the volume > we are able to keep track of most messages that are sent. > > Martijn > > On Dec 20, 2007 12:12 PM, jweekend <[EMAIL PROTECTED]> wrote: > >> >> We've just had confirmation from nab

Wicket posts missing on nabble

2007-12-20 Thread jweekend
We've just had confirmation from nabble that some messages are not appearing on their wicket-user list despite coming up in matching search results (eg I posted yesterday about how we used the forum to successfully find a Wicket developer, and that never appeared on the list, despite being visible

Re: Wicket training/reviews/contract work

2007-12-18 Thread jweekend
http://jWeekend.co.uk http://jWeekend.co.uk PS Uwe, are you still looking for another Wicket developer for your project? If you have already hired someone too, was it down to your announcement here or did you use another technique? jweekend wrote: > > The next 3 scheduled 2-day London Wicket cour

RE: Wrapping up the Amsterdam Wicket Meetup

2007-12-09 Thread jweekend
gt; always a lot of fun. Together (with other local meetups too), we can bring > in a more diverse group and reach a much bigger audience. > > I welcome your suggestions and look forward to working together on a next, > bigger and better meetup! > > Thanks, > > Arjé &g

Re: wicket applet issue

2007-12-05 Thread jweekend
Make the simplest possible applet and simplest possible static web-page with the applet-tag (ie _not_ a Wicket page) and make sure your browser will handle that properly. The exception you describe can be caused by mismatched java versions between your compiled code (applet) and the browser's java

Re: wicket + swing

2007-12-04 Thread jweekend
Have a look at http://cwiki.apache.org/WICKET/spring.html this for starters. Regards - Cemal http://jWeekend.co.uk http://jWeekend.co.uk zandile wrote: > > I have been looking on the internet for a clear example of how wicket > works with spring and still not clear. > The closest thing I cam

Re: Wrapping up the Amsterdam Wicket Meetup

2007-12-04 Thread jweekend
don events ( http://jWeekend.co.uk jWeekend with http://herebebeasties.com Al Maw ). We have had varying attendances to date and our guests have told us how much they have enjoyed the events and presentations (although most of our lot seem to be too shy to post about it ;-). Maybe looking ahead, w

Re: London Wicket Users Group Event - December 5th confirmed

2007-12-03 Thread jweekend
co.uk http://jWeekend.co.uk jweekend wrote: > > Thanks for the feedback regarding dates. The December London Wicket User > Group event will be held on December 5th. > > At this free event, Ian Godman will talk about his upcoming Wicket > "security framework" which he

Re: Wicket Trees - presentation/diagram

2007-12-03 Thread jweekend
ever it covers a lot of internal tree state, > which is something the users shouldn't be botherered with. Are you > sure you want to go into such details? > > -Matej > > On Dec 2, 2007 9:39 PM, jweekend <[EMAIL PROTECTED]> wrote: >> >> I'm preparing

Re: Wicket-Seam Integration

2007-12-02 Thread jweekend
amp;op=viewtopic&t=124973&start=-10 > > Thanks for the interest. > > Cheers, > Frank. > > On Nov 26, 2007 7:34 AM, jweekend <[EMAIL PROTECTED]> wrote: >> >> Frank, >> >> I have passed on a link to this thread (and to your blog) to a peopl

<    1   2   3   4   >