RE: overLIB Integration...

2008-11-18 Thread Swinsburg, Stephen
I used overLIB years ago and its pretty basic. What about something like 
jQuery's cluetip (http://plugins.learningjquery.com/cluetip/demo/) - far more 
extensible and configurable.

Personal preference I guess.

Steve


-Original Message-
From: James Carman [mailto:[EMAIL PROTECTED]
Sent: Tue 11/18/2008 1:25 AM
To: users@wicket.apache.org
Subject: Re: overLIB Integration...
 
On Mon, Nov 17, 2008 at 4:58 PM, Marc Ende [EMAIL PROTECTED] wrote:
 Hi,

 imho this would be a nice feature.

 What about the mentioned constructor is it still
 OverlibBehavior(String) or do you plan also
 a OverlibBehavior(IModel)? It would be nice to
 have such a constructor when the contents should
 be loaded from a model.

Great idea!  In our application (where I need it right now), we didn't
need to use models, but I can see how this would be a wickety way to
do it.  I'll incorporate it.  I'll try to get something up on
wicketstuff soon.  Glad to hear that it would be useful to other
folks.

-
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]



Re: overLIB Integration...

2008-11-18 Thread Nino Saturnino Martinez Vazquez Wael
Hmm, we do actually have both prototip and mootip integration as stuff 
projects, and mootip supports ajax retrival of tips.. But the more the 
merrier I guess?


Swinsburg, Stephen wrote:

I used overLIB years ago and its pretty basic. What about something like 
jQuery's cluetip (http://plugins.learningjquery.com/cluetip/demo/) - far more 
extensible and configurable.

Personal preference I guess.

Steve


-Original Message-
From: James Carman [mailto:[EMAIL PROTECTED]
Sent: Tue 11/18/2008 1:25 AM
To: users@wicket.apache.org
Subject: Re: overLIB Integration...
 
On Mon, Nov 17, 2008 at 4:58 PM, Marc Ende [EMAIL PROTECTED] wrote:
  

Hi,

imho this would be a nice feature.

What about the mentioned constructor is it still
OverlibBehavior(String) or do you plan also
a OverlibBehavior(IModel)? It would be nice to
have such a constructor when the contents should
be loaded from a model.



Great idea!  In our application (where I need it right now), we didn't
need to use models, but I can see how this would be a wickety way to
do it.  I'll incorporate it.  I'll try to get something up on
wicketstuff soon.  Glad to hear that it would be useful to other
folks.

-
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]

  


--
-Wicket for love

Nino Martinez Wael
Java Specialist @ Jayway DK
http://www.jayway.dk
+45 2936 7684


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



Re: overLIB Integration...

2008-11-18 Thread TahitianGabriel

I'd love to have that code too. Very interesting indeed.



jwcarman wrote:
 
   If anyone's interested, I can put it in wicketstuff.
 
 

-- 
View this message in context: 
http://www.nabble.com/overLIB-Integration...-tp20547530p20564951.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]



overLIB Integration...

2008-11-17 Thread James Carman
Would anyone be interested in a Wicket/overLIB integration library?
I've written one for work and wouldn't mind sharing it with folks.  It
makes it very easy to add overLIB stuff to components, using
behaviors...

component.add(new OverlibBehavior(This is my tooltip
text).sticky().forceClose().delay(250));

This would create a tooltip with the specified text that is sticky
and has to be closed.  It wouldn't show up for 250 milliseconds.  If
anyone's interested, I can put it in wicketstuff.

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



Re: overLIB Integration...

2008-11-17 Thread Marc Ende
Hi,

imho this would be a nice feature.

What about the mentioned constructor is it still
OverlibBehavior(String) or do you plan also
a OverlibBehavior(IModel)? It would be nice to
have such a constructor when the contents should
be loaded from a model.

Marc

James Carman schrieb:
 Would anyone be interested in a Wicket/overLIB integration library?
 I've written one for work and wouldn't mind sharing it with folks.  It
 makes it very easy to add overLIB stuff to components, using
 behaviors...
 
 component.add(new OverlibBehavior(This is my tooltip
 text).sticky().forceClose().delay(250));
 
 This would create a tooltip with the specified text that is sticky
 and has to be closed.  It wouldn't show up for 250 milliseconds.  If
 anyone's interested, I can put it in wicketstuff.
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 




signature.asc
Description: OpenPGP digital signature


Re: overLIB Integration...

2008-11-17 Thread Jeremy Thomerson
I also like the idea and would use it.

-- 
Jeremy Thomerson
http://www.wickettraining.com

On Mon, Nov 17, 2008 at 3:58 PM, Marc Ende [EMAIL PROTECTED] wrote:

 Hi,

 imho this would be a nice feature.

 What about the mentioned constructor is it still
 OverlibBehavior(String) or do you plan also
 a OverlibBehavior(IModel)? It would be nice to
 have such a constructor when the contents should
 be loaded from a model.

 Marc

 James Carman schrieb:
   Would anyone be interested in a Wicket/overLIB integration library?
  I've written one for work and wouldn't mind sharing it with folks.  It
  makes it very easy to add overLIB stuff to components, using
  behaviors...
 
  component.add(new OverlibBehavior(This is my tooltip
  text).sticky().forceClose().delay(250));
 
  This would create a tooltip with the specified text that is sticky
  and has to be closed.  It wouldn't show up for 250 milliseconds.  If
  anyone's interested, I can put it in wicketstuff.
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 





Re: overLIB Integration...

2008-11-17 Thread James Carman
On Mon, Nov 17, 2008 at 4:58 PM, Marc Ende [EMAIL PROTECTED] wrote:
 Hi,

 imho this would be a nice feature.

 What about the mentioned constructor is it still
 OverlibBehavior(String) or do you plan also
 a OverlibBehavior(IModel)? It would be nice to
 have such a constructor when the contents should
 be loaded from a model.

Great idea!  In our application (where I need it right now), we didn't
need to use models, but I can see how this would be a wickety way to
do it.  I'll incorporate it.  I'll try to get something up on
wicketstuff soon.  Glad to hear that it would be useful to other
folks.

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