Re: anyone in pune want to represent?

2008-02-04 Thread karthik Guru
There are at least 2 companies for sure that work on wicket in pune, India.
I met them while at a conference there a few months back.  I think I have
their email - I will put a word from my side as well for sure.

- Karthik

On Feb 4, 2008 1:32 AM, Jonathan Locke <[EMAIL PROTECTED]> wrote:

>
> i saw this today on facebook from my old javasoft buddy freeman...
>
> http://barcamp.org/BarCampPune4
>
>
> --
> View this message in context:
> http://www.nabble.com/anyone-in-pune-want-to-represent--tp15263298p15263298.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
-- karthik --


Re: Article: Introducing Apache Wicket

2008-01-28 Thread karthik Guru
This is really nice - covers the basics so well unlike the one that I posted
:) - actually thanks to martijn, cemal, i added a little bit of context to
my post. I think it makes sense to link to this article first when writing a
blog post - it just clears up the basics so nicely.
One nice addition to the article IMHO could be a reference of some kind to
wicket "behavior"-s.

regards,
Karthik


On Jan 28, 2008 1:02 PM, Nick Heudecker <[EMAIL PROTECTED]> wrote:

> It's finally up:
> http://www.theserverside.com/news/thread.tss?thread_id=48234
>
> Thanks to the various reviewers that helped improve both the content and
> quality of the article, including Martijn, Eelco, Igor, Gerolf and Talios.
>
> --
> Nick Heudecker
> Professional Wicket Training & Consulting
> http://www.systemmobile.com
>
> Eventful - Intelligent Event Management
> http://www.eventfulhq.com
>



-- 
-- karthik --


Re: a wicket tutorial

2008-01-25 Thread karthik Guru
Yes sure - I will add it as a follow up blog post this weekend.

thanks,
Karthik

On Jan 25, 2008 1:38 PM, Ryan Sonnek <[EMAIL PROTECTED]> wrote:

> If you're using scriptaculous in your example, you might be interested
> in using the wicketstuff-scriptaculous project.  it would simplify
> your custom component by:
> * automatically adding the javascript for you
> * using Java API to do effects instead of writing "String" javascript
> functions.
>
>
> On Jan 25, 2008 1:30 PM, karthik Guru <[EMAIL PROTECTED]> wrote:
> > Hi All,
> >
> > Just to let you know that I posted a small tutorial on writing custom
> > component here -
> >
> >
> http://karthikg.wordpress.com/2008/01/24/developing-a-custom-apache-wicket-component/
> >
> > I just wrote it to get a breather from my day job which is all about
> > processing xml schemas and wsdls that c'd get really boring. Wicket ,
> that
> > way is probably more like your new born baby that you want to go back to
> > everyday evening after work :)
> >
> > The component is based on prototype. Igor suggested using (the better?)
> > Jquery instead but I just didn't have the bandwidth to learn jquery.
> Hope
> > the article proves to be of some help to newbies to custom component
> > development.
> >
> > The jsf enthusiasm (misplaced / otherwise) seems to have died down and
> the
> > tapestry 5 crowd also seems pretty silent. This is probably a good time
> for
> > wicket users to make more noise :).
> >
> > Very soon we will have the eagerly awaited Wicket in Action. I was
> wondering
> > what could be really cool next. We all know that the wicket team
> 'listens'
> > to its users. So how about "wicket cookbook, oreilly?, by..ahem one
> > Mr..Vaynberg / the wicket team" ??!!  ;)
> >
> > Karthik
> >
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
-- karthik --


a wicket tutorial

2008-01-25 Thread karthik Guru
Hi All,

Just to let you know that I posted a small tutorial on writing custom
component here -

http://karthikg.wordpress.com/2008/01/24/developing-a-custom-apache-wicket-component/

I just wrote it to get a breather from my day job which is all about
processing xml schemas and wsdls that c'd get really boring. Wicket , that
way is probably more like your new born baby that you want to go back to
everyday evening after work :)

The component is based on prototype. Igor suggested using (the better?)
Jquery instead but I just didn't have the bandwidth to learn jquery. Hope
the article proves to be of some help to newbies to custom component
development.

The jsf enthusiasm (misplaced / otherwise) seems to have died down and the
tapestry 5 crowd also seems pretty silent. This is probably a good time for
wicket users to make more noise :).

Very soon we will have the eagerly awaited Wicket in Action. I was wondering
what could be really cool next. We all know that the wicket team 'listens'
to its users. So how about "wicket cookbook, oreilly?, by..ahem one
Mr..Vaynberg / the wicket team" ??!!  ;)

Karthik


Re: Wicket, Selenium and generated id attributes

2007-11-20 Thread karthik Guru
Does selenium works with names?
I mean something like -

selenium.click("login"); with the mark up having -

Login

But yes, this *might* work for links that you know up front but not the ones
that are generated through a loop component for e.g.

On Nov 20, 2007 6:12 PM, Niels van Kampenhout <[EMAIL PROTECTED]>
wrote:

> Hi,
>
> I am experimenting with Selenium tests for our Wicket application. Many
> of my test have code like
>
>   selenium.click("login_dialog_link22");
>
> Because the id "login_dialog_link22" is generated by Wicket, and changes
> often as the app is still under heavy development, it's a bit of a PITA
> to keep the tests in sync.
>
> Anyone knows a neat way to make the tests more robust? Can I influence
> the generated id?
>
> Thanks,
>
> Niels
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-- 
-- karthik --


Refreshing components with new data w/o altering the backing model

2007-10-22 Thread karthik Guru
I have a form like this -

Name:  [.]
Zip:  [.]
City: [.]
State:   [.]

[Save]

On filling the zip i want to auto populate the city and state. I can attach
a AjaxFormComponentUpdatingBehavior to the zip field and do this. But I
don't want to update the zip model, so i plan to have my version of
AjaxFormComponentUpdatingBehavior and 'not' update the model. I can possibly
get the user entered value from the convertedInput.

But I don't want to want to update the city and the state model either to
auto-populate the fields.

Basically I want to hold off on the model updates until somebody clicks the
save button.

Can i set the converted input on a component and get it to refresh through
Ajax?
I know that I can do this through javascript ($(fieldId).value = ''blah
blah')and add it to AjaxTarget. But i was wondering if i can just work with
components (do setConvertedInput / something) and then add it to Ajaxtarget
and make it work?

-- karthik --


Re: JavaZone presentation follow up

2007-09-12 Thread karthik Guru
Congrats!

47 slides! how long was the talk? In the past i have had trouble running
through all of them in little less than an hour. I have mine coming up late
october in India and i have only 50 minutes to sell Wicket!.

I like the reference to "Pro JSF & Ajax" - I had the exact same feeling
reading that book sometime back and i even pinged Eelco and told him.
How I wish I had learnt JSF before coming to wicket - Am supposed to do a
session comparing both. So in my spare time am forced to try out exercises
in JSF - its so painful to go backwards in life ! :-(

Also this -

http://chillenious.wordpress.com/2006/05/12/a-word-about-custom-components/

Btw, do you mind if i "re-use" some of your slide contents ? ;-)

thanks,
Karthik


On 9/12/07, Xavier Hanin <[EMAIL PROTECTED]> wrote:
>
> Hi Wicket community,
>
> I've just finished my presentation on Wicket at JavaZone! Presentation
> outline:
> * What is Wicket
> * Wicket core concepts
> * Creating a custom component with Wicket
>
> The slides I've used are available here:
> http://people.apache.org/~xavier/wicket/wicket-javazone-07.ppt
>
> The source code (as an eclipse project, with all required libs, no ant nor
> maven build, sorry) is available here:
> http://people.apache.org/~xavier/wicket/wicket-javazone-07.zip
>
> From my point of view the presentation went pretty well, the room was
> almost
> packed, if only I had a better spoken english level maybe I would have
> wake
> up a few tired attendees in the back :-)
>
> Thanks to all of you who helped me prepare the presentation, and special
> thanks to Eelco and the JavaZone committee to have trust me to replace him
> for this talk.
>
> Xavier
> --
> Xavier Hanin - Independent Java Consultant
> http://xhab.blogspot.com/
> http://incubator.apache.org/ivy/
> http://www.xoocode.org/
>



-- 
-- karthik --