Re: Advice wanted about polished component set with Wicket

2011-11-09 Thread James Stewart


That sounds encouraging. I am very interested in how you went about 
integrating Dojo into Wicket.


On 9/11/2011 2:51 PM, Martin Grigorov wrote:

Hi David,

I'm interested in your work.
Another guy also did something at https://github.com/vijaykiran/wicketstuff-dojo

On Tue, Nov 8, 2011 at 8:36 PM, David Berkmandavid.berk...@glu.com  wrote:

I've had excellent success wrapping most of Dojo with Wicket, and it
would not be hard to complete the rest. There's a wicket-dojo project
out there, but it didn't seem to be active, so I just started in on my
own. Dojo is a comprehensive, well laid out project (always had a good
concept of namespace and packaging, unlike most other javascript
frameworks), with decent documentation. Browsers have a tendency to fire
events in different orders, and when you start adding your own 'onxxx'
functions, you can get unexpected behavior. My first guess would be that
this is the cause of your problems in IE, as it seems to be particularly
random in this regard. Dojo has its own, extensive, event framework,
that corrects for these issues. If you want to look at my code, let me
know and I'll send it your way.

David

-Original Message-
From: James Stewart [mailto:james.stewart...@gmail.com]
Sent: Tuesday, November 08, 2011 4:58 AM
To: users@wicket.apache.org
Subject: Advice wanted about polished component set with Wicket

Hi all,

We have been using Wicket for some time now with our home grown html
some wicket components. However, there are some complaints that our
components and pages look a bit bland.

This has prompted us to look around at various alternatives. We tried
using plain jQuery with wicket and found some odd behaviour here and
there on Internet Explorer when using Ajax, which we never got to the
bottom of. If I remember correctly it was the calendar appearing on
first render which then disappeared and it would never reappear again.

This has lead us to reassess our component situation. Having looked at
the wiQuery demo site it doesn't fill me with confidence. Perhaps it is
just the demo site that does not work well and is not an indication of
the underlying library.

The next library we are considering is Visural Wicket. It looks
promising but it only seem to have one developer working on it.

Otherwise we would probably look to something like YUI of which I have
some experience but not with Wicket. It would take some investigating
though to establish if it would have similar problems that we
encountered with JQuery.

Any advice or real world experience will be appreciated.

Thanks,
James.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org








-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Advice wanted about polished component set with Wicket

2011-11-09 Thread James Stewart

Hi Martin,

Have you got a typical example of a destroy + create new in the 
wicket-ajax.onBeforeRender? This may make life easier with JQuery.


Thanks,
James.

On 8/11/2011 9:26 PM, Martin Makundi wrote:

Hi!

When you render jquery components via ajax you often need to recreate
them (destroy old + create new) with wicket-ajax.onBeforeRender

It might seem bit tricky at start but simply make it part of
onBeforeRender or similar in either a behavior or component itself.

**
Martin

2011/11/8 James Stewartjames.stewart...@gmail.com:

Hi all,

We have been using Wicket for some time now with our home grown html  some
wicket components. However, there are some complaints that our components
and pages look a bit bland.

This has prompted us to look around at various alternatives. We tried using
plain jQuery with wicket and found some odd behaviour here and there on
Internet Explorer when using Ajax, which we never got to the bottom of. If I
remember correctly it was the calendar appearing on first render which then
disappeared and it would never reappear again.

This has lead us to reassess our component situation. Having looked at the
wiQuery demo site it doesn't fill me with confidence. Perhaps it is just the
demo site that does not work well and is not an indication of the underlying
library.

The next library we are considering is Visural Wicket. It looks promising
but it only seem to have one developer working on it.

Otherwise we would probably look to something like YUI of which I have some
experience but not with Wicket. It would take some investigating though to
establish if it would have similar problems that we encountered with JQuery.

Any advice or real world experience will be appreciated.

Thanks,
James.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Advice wanted about polished component set with Wicket

2011-11-09 Thread anantasthana
David,
I would be extremely interested in your work. I have been trying to
integrate JqUery plugins with wicket and not have had much success. The
answers from this post will surely be helpful

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Advice-wanted-about-polished-component-set-with-Wicket-tp4015908p4020360.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Advice wanted about polished component set with Wicket

2011-11-09 Thread Ernesto Reinaldo Barreiro
May I ask which plugins you tried to integrate? I have integrated a
few of them and for most of them integration was not that hard.

Regards,

Ernesto

On Wed, Nov 9, 2011 at 5:29 PM, anantasthana anant.a...@gmail.com wrote:
 David,
 I would be extremely interested in your work. I have been trying to
 integrate JqUery plugins with wicket and not have had much success. The
 answers from this post will surely be helpful

 --
 View this message in context: 
 http://apache-wicket.1842946.n4.nabble.com/Advice-wanted-about-polished-component-set-with-Wicket-tp4015908p4020360.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Advice wanted about polished component set with Wicket

2011-11-09 Thread anantasthana
I tried to integrate the JCaurosel and Ajax Vertical slider which is
basically a lazy load scroll bar.
I am still new to wicket and still learning new things every day so ther are
alot of things I am still learning.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Advice-wanted-about-polished-component-set-with-Wicket-tp4015908p4020538.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Advice wanted about polished component set with Wicket

2011-11-09 Thread Ernesto Reinaldo Barreiro
Hi,

There are at least two projects out there that already do some
integration with jquery... So, it might be a good idea to take a look
at them:-)

On Wed, Nov 9, 2011 at 6:15 PM, anantasthana anant.a...@gmail.com wrote:
 I tried to integrate the JCaurosel and Ajax Vertical slider which is
 basically a lazy load scroll bar.

We have integrated a vertical slider on [1].

I have also integrated a component similar to jCarousel in one of my
applications, if you want I can share the code with you. You can see
the component at work in [2]... This is just a prototype... So be kind
with the design and so for... Just click on the magnifying glass icon
and go to the  images tab.

Regards,

Ernesto

References,

1-http://wiquery-plugins-demo.appspot.com/demo/?wicket:bookmarkablePage=:com.wiquery.plugins.demo.SlideDeckPage
2-http://infomar.javaprovider.net/infomaresme/

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Advice wanted about polished component set with Wicket

2011-11-09 Thread anant . asty
Yeah I have tried learning from some stuff in wicketstuff and Wiquery so 
someday I will be ready to contribute.
-Original Message-
From: Ernesto Reinaldo Barreiro reier...@gmail.com
Date: Wed, 9 Nov 2011 18:48:17 
To: users@wicket.apache.org
Reply-To: users@wicket.apache.org
Subject: Re: Advice wanted about polished component set with Wicket

Hi,

There are at least two projects out there that already do some
integration with jquery... So, it might be a good idea to take a look
at them:-)

On Wed, Nov 9, 2011 at 6:15 PM, anantasthana anant.a...@gmail.com wrote:
 I tried to integrate the JCaurosel and Ajax Vertical slider which is
 basically a lazy load scroll bar.

We have integrated a vertical slider on [1].

I have also integrated a component similar to jCarousel in one of my
applications, if you want I can share the code with you. You can see
the component at work in [2]... This is just a prototype... So be kind
with the design and so for... Just click on the magnifying glass icon
and go to the  images tab.

Regards,

Ernesto

References,

1-http://wiquery-plugins-demo.appspot.com/demo/?wicket:bookmarkablePage=:com.wiquery.plugins.demo.SlideDeckPage
2-http://infomar.javaprovider.net/infomaresme/

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Advice wanted about polished component set with Wicket

2011-11-08 Thread James Stewart

Hi all,

We have been using Wicket for some time now with our home grown html  
some wicket components. However, there are some complaints that our 
components and pages look a bit bland.


This has prompted us to look around at various alternatives. We tried 
using plain jQuery with wicket and found some odd behaviour here and 
there on Internet Explorer when using Ajax, which we never got to the 
bottom of. If I remember correctly it was the calendar appearing on 
first render which then disappeared and it would never reappear again.


This has lead us to reassess our component situation. Having looked at 
the wiQuery demo site it doesn't fill me with confidence. Perhaps it is 
just the demo site that does not work well and is not an indication of 
the underlying library.


The next library we are considering is Visural Wicket. It looks 
promising but it only seem to have one developer working on it.


Otherwise we would probably look to something like YUI of which I have 
some experience but not with Wicket. It would take some investigating 
though to establish if it would have similar problems that we 
encountered with JQuery.


Any advice or real world experience will be appreciated.

Thanks,
James.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Advice wanted about polished component set with Wicket

2011-11-08 Thread Martin Makundi
Hi!

When you render jquery components via ajax you often need to recreate
them (destroy old + create new) with wicket-ajax.onBeforeRender

It might seem bit tricky at start but simply make it part of
onBeforeRender or similar in either a behavior or component itself.

**
Martin

2011/11/8 James Stewart james.stewart...@gmail.com:
 Hi all,

 We have been using Wicket for some time now with our home grown html  some
 wicket components. However, there are some complaints that our components
 and pages look a bit bland.

 This has prompted us to look around at various alternatives. We tried using
 plain jQuery with wicket and found some odd behaviour here and there on
 Internet Explorer when using Ajax, which we never got to the bottom of. If I
 remember correctly it was the calendar appearing on first render which then
 disappeared and it would never reappear again.

 This has lead us to reassess our component situation. Having looked at the
 wiQuery demo site it doesn't fill me with confidence. Perhaps it is just the
 demo site that does not work well and is not an indication of the underlying
 library.

 The next library we are considering is Visural Wicket. It looks promising
 but it only seem to have one developer working on it.

 Otherwise we would probably look to something like YUI of which I have some
 experience but not with Wicket. It would take some investigating though to
 establish if it would have similar problems that we encountered with JQuery.

 Any advice or real world experience will be appreciated.

 Thanks,
 James.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Advice wanted about polished component set with Wicket

2011-11-08 Thread Ernesto Reinaldo Barreiro
Can you examples of the components you need?

Regards,

Ernesto

On Tue, Nov 8, 2011 at 1:57 PM, James Stewart
james.stewart...@gmail.com wrote:
 Hi all,

 We have been using Wicket for some time now with our home grown html  some
 wicket components. However, there are some complaints that our components
 and pages look a bit bland.

 This has prompted us to look around at various alternatives. We tried using
 plain jQuery with wicket and found some odd behaviour here and there on
 Internet Explorer when using Ajax, which we never got to the bottom of. If I
 remember correctly it was the calendar appearing on first render which then
 disappeared and it would never reappear again.

 This has lead us to reassess our component situation. Having looked at the
 wiQuery demo site it doesn't fill me with confidence. Perhaps it is just the
 demo site that does not work well and is not an indication of the underlying
 library.

 The next library we are considering is Visural Wicket. It looks promising
 but it only seem to have one developer working on it.

 Otherwise we would probably look to something like YUI of which I have some
 experience but not with Wicket. It would take some investigating though to
 establish if it would have similar problems that we encountered with JQuery.

 Any advice or real world experience will be appreciated.

 Thanks,
 James.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Advice wanted about polished component set with Wicket

2011-11-08 Thread David Berkman
I've had excellent success wrapping most of Dojo with Wicket, and it
would not be hard to complete the rest. There's a wicket-dojo project
out there, but it didn't seem to be active, so I just started in on my
own. Dojo is a comprehensive, well laid out project (always had a good
concept of namespace and packaging, unlike most other javascript
frameworks), with decent documentation. Browsers have a tendency to fire
events in different orders, and when you start adding your own 'onxxx'
functions, you can get unexpected behavior. My first guess would be that
this is the cause of your problems in IE, as it seems to be particularly
random in this regard. Dojo has its own, extensive, event framework,
that corrects for these issues. If you want to look at my code, let me
know and I'll send it your way.

David

-Original Message-
From: James Stewart [mailto:james.stewart...@gmail.com] 
Sent: Tuesday, November 08, 2011 4:58 AM
To: users@wicket.apache.org
Subject: Advice wanted about polished component set with Wicket

Hi all,

We have been using Wicket for some time now with our home grown html 
some wicket components. However, there are some complaints that our
components and pages look a bit bland.

This has prompted us to look around at various alternatives. We tried
using plain jQuery with wicket and found some odd behaviour here and
there on Internet Explorer when using Ajax, which we never got to the
bottom of. If I remember correctly it was the calendar appearing on
first render which then disappeared and it would never reappear again.

This has lead us to reassess our component situation. Having looked at
the wiQuery demo site it doesn't fill me with confidence. Perhaps it is
just the demo site that does not work well and is not an indication of
the underlying library.

The next library we are considering is Visural Wicket. It looks
promising but it only seem to have one developer working on it.

Otherwise we would probably look to something like YUI of which I have
some experience but not with Wicket. It would take some investigating
though to establish if it would have similar problems that we
encountered with JQuery.

Any advice or real world experience will be appreciated.

Thanks,
James.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Advice wanted about polished component set with Wicket

2011-11-08 Thread Martin Grigorov
Hi David,

I'm interested in your work.
Another guy also did something at https://github.com/vijaykiran/wicketstuff-dojo

On Tue, Nov 8, 2011 at 8:36 PM, David Berkman david.berk...@glu.com wrote:
 I've had excellent success wrapping most of Dojo with Wicket, and it
 would not be hard to complete the rest. There's a wicket-dojo project
 out there, but it didn't seem to be active, so I just started in on my
 own. Dojo is a comprehensive, well laid out project (always had a good
 concept of namespace and packaging, unlike most other javascript
 frameworks), with decent documentation. Browsers have a tendency to fire
 events in different orders, and when you start adding your own 'onxxx'
 functions, you can get unexpected behavior. My first guess would be that
 this is the cause of your problems in IE, as it seems to be particularly
 random in this regard. Dojo has its own, extensive, event framework,
 that corrects for these issues. If you want to look at my code, let me
 know and I'll send it your way.

 David

 -Original Message-
 From: James Stewart [mailto:james.stewart...@gmail.com]
 Sent: Tuesday, November 08, 2011 4:58 AM
 To: users@wicket.apache.org
 Subject: Advice wanted about polished component set with Wicket

 Hi all,

 We have been using Wicket for some time now with our home grown html 
 some wicket components. However, there are some complaints that our
 components and pages look a bit bland.

 This has prompted us to look around at various alternatives. We tried
 using plain jQuery with wicket and found some odd behaviour here and
 there on Internet Explorer when using Ajax, which we never got to the
 bottom of. If I remember correctly it was the calendar appearing on
 first render which then disappeared and it would never reappear again.

 This has lead us to reassess our component situation. Having looked at
 the wiQuery demo site it doesn't fill me with confidence. Perhaps it is
 just the demo site that does not work well and is not an indication of
 the underlying library.

 The next library we are considering is Visural Wicket. It looks
 promising but it only seem to have one developer working on it.

 Otherwise we would probably look to something like YUI of which I have
 some experience but not with Wicket. It would take some investigating
 though to establish if it would have similar problems that we
 encountered with JQuery.

 Any advice or real world experience will be appreciated.

 Thanks,
 James.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org





-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org