Re: [Wicket-user] New Wicket-contrib-dojo release

2005-12-02 Thread Marco van de Haar
It should be fixed in CVS version. though I have no valid test-case to 
test it on, maybe you could give me a case to test the serializable?
Anyway, it will be in our next release which we plan on releasing soon 
as our next component will be included and some of the major bugs are fixed.


Marco

Ingram Chen wrote:


Thanks for the fix, I will try it next release.

Another small bug I found is inner class FXAjaxValidationHandler.RGB does
not implement Serializable. Hope this can be fixed too.

Thanks in advance !

On 11/28/05, *Marco van de Haar* [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


We fixed the FXAjaxValidationHandler so that is supposed to work with
all FormComponents now, as was intended.
We tested it on a TextArea and it works fine. The fix is not in
the 0.3
release, but you can check out wicket-contrib-dojo
FXValidationAjaxHandler.java We will add the fixed handler to our next
release and add a TextArea example in our next example app.

We did have to add a restriction to our handler. The FormComponent
where
the handler is bound to has to be added to a page BEFORE you add the
handler like this:

tarea = new TextArea(tarea, new
PropertyModel(ValidationTestPage.this, textValue));
tarea.add(LengthValidator.max(10));

//add the component first before you add the handler
form.add(tarea);
tarea.add(new FXValidationAjaxHandler(onblur));

otherwise, and exception will be thrown.

Marco  Ruud

NOTE: due to a previously erronomous commit you will still get a
filename-case warning when checking out wicket-contrib-dojo on
BasicTooltipTutorial.xml , this is in the process of bieng fixed,
but can
take a few days. It should not affect checked out code.

 Hi,
 I tried FX AJAX Validation and it works great with TextField.
 Thanks for the great job !

 But I found that it does not work with TextArea (raise Unmodified
 related exception from ValueMap) .
 Have any body tried ?


 On 11/25/05, *Ruud Booltink*  [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] wrote:

 Hi all,

 We're proud to anounce our first real contrib-dojo release :)
 This release contains:
 Dojo FX Decorators
 Dojo FX Tooltip
 FX ajax Validation
 FXFeedbackIndicator
 xdocs updated with new site
 Example applications

 You can check our release at
 http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/

 Have fun with the release, and if you have any comments,
please feel
 free to post them on the mailinglist :)

 Regards,

 Ruud and Marco




 ---
 This SF.net email is sponsored by: Splunk Inc. Do you grep
through
 log files
 for problems?  Stop!  Download the new AJAX search engine
that makes
 searching your log files as easy as surfing the  web.  DOWNLOAD
 SPLUNK!
 http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
  http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
mailto:Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
mailto:Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user




 --
 Ingram Chen
 Java [EMAIL PROTECTED]
 Institue of BioMedical Sciences Academia Sinica Taiwan
 blog: http://www.javaworld.com.tw/roller/page/ingramchen




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through
log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD
SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
mailto:Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user




--
Ingram Chen
Java [EMAIL PROTECTED]
Institue of BioMedical Sciences Academia Sinica Taiwan
blog: http://www.javaworld.com.tw/roller/page/ingramchen 





---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that 

Re: [Wicket-user] New Wicket-contrib-dojo release

2005-12-02 Thread Eelco Hillenius
The easiest way to test whether you wicket application behaves well
when serialized, turn on the debugging logging for WebSession, like:

log4j.logger.wicket.protocol.http.WebSession=DEBUG

Eelco


On 12/2/05, Marco van de Haar [EMAIL PROTECTED] wrote:
 It should be fixed in CVS version. though I have no valid test-case to
 test it on, maybe you could give me a case to test the serializable?
 Anyway, it will be in our next release which we plan on releasing soon
 as our next component will be included and some of the major bugs are fixed.

 Marco

 Ingram Chen wrote:

  Thanks for the fix, I will try it next release.
 
  Another small bug I found is inner class FXAjaxValidationHandler.RGB does
  not implement Serializable. Hope this can be fixed too.
 
  Thanks in advance !
 
  On 11/28/05, *Marco van de Haar* [EMAIL PROTECTED]
  mailto:[EMAIL PROTECTED] wrote:
 
  We fixed the FXAjaxValidationHandler so that is supposed to work with
  all FormComponents now, as was intended.
  We tested it on a TextArea and it works fine. The fix is not in
  the 0.3
  release, but you can check out wicket-contrib-dojo
  FXValidationAjaxHandler.java We will add the fixed handler to our next
  release and add a TextArea example in our next example app.
 
  We did have to add a restriction to our handler. The FormComponent
  where
  the handler is bound to has to be added to a page BEFORE you add the
  handler like this:
 
  tarea = new TextArea(tarea, new
  PropertyModel(ValidationTestPage.this, textValue));
  tarea.add(LengthValidator.max(10));
 
  //add the component first before you add the handler
  form.add(tarea);
  tarea.add(new FXValidationAjaxHandler(onblur));
 
  otherwise, and exception will be thrown.
 
  Marco  Ruud
 
  NOTE: due to a previously erronomous commit you will still get a
  filename-case warning when checking out wicket-contrib-dojo on
  BasicTooltipTutorial.xml , this is in the process of bieng fixed,
  but can
  take a few days. It should not affect checked out code.
 
   Hi,
   I tried FX AJAX Validation and it works great with TextField.
   Thanks for the great job !
  
   But I found that it does not work with TextArea (raise Unmodified
   related exception from ValueMap) .
   Have any body tried ?
  
  
   On 11/25/05, *Ruud Booltink*  [EMAIL PROTECTED]
  mailto:[EMAIL PROTECTED]
   mailto:[EMAIL PROTECTED]
  mailto:[EMAIL PROTECTED] wrote:
  
   Hi all,
  
   We're proud to anounce our first real contrib-dojo release :)
   This release contains:
   Dojo FX Decorators
   Dojo FX Tooltip
   FX ajax Validation
   FXFeedbackIndicator
   xdocs updated with new site
   Example applications
  
   You can check our release at
   http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/
  
   Have fun with the release, and if you have any comments,
  please feel
   free to post them on the mailinglist :)
  
   Regards,
  
   Ruud and Marco
  
  
  
  
   ---
   This SF.net email is sponsored by: Splunk Inc. Do you grep
  through
   log files
   for problems?  Stop!  Download the new AJAX search engine
  that makes
   searching your log files as easy as surfing the  web.  DOWNLOAD
   SPLUNK!
   http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
  http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
  http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
  mailto:Wicket-user@lists.sourceforge.net
   mailto:Wicket-user@lists.sourceforge.net
  mailto:Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
  
  
   --
   Ingram Chen
   Java [EMAIL PROTECTED]
   Institue of BioMedical Sciences Academia Sinica Taiwan
   blog: http://www.javaworld.com.tw/roller/page/ingramchen
 
 
 
 
  ---
  This SF.net email is sponsored by: Splunk Inc. Do you grep through
  log files
  for problems?  Stop!  Download the new AJAX search engine that makes
  searching your log files as easy as surfing the  web.  DOWNLOAD
  SPLUNK!
  http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
  http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
  ___
  Wicket-user mailing list
  

Re: [Wicket-user] New Wicket-contrib-dojo release

2005-12-01 Thread Ingram Chen
Thanks for the fix, I will try it next release.Another small bug I found is inner class FXAjaxValidationHandler.RGB doesnot implement Serializable. Hope this can be fixed too.Thanks in advance !
On 11/28/05, Marco van de Haar [EMAIL PROTECTED] wrote:
We fixed the FXAjaxValidationHandler so that is supposed to work withall FormComponents now, as was intended.We tested it on a TextArea and it works fine. The fix is not in the 0.3release, but you can check out wicket-contrib-dojo
FXValidationAjaxHandler.java We will add the fixed handler to our nextrelease and add a TextArea example in our next example app.We did have to add a restriction to our handler. The FormComponent where
the handler is bound to has to be added to a page BEFORE you add thehandler like this:tarea = new TextArea(tarea, newPropertyModel(ValidationTestPage.this, textValue));
tarea.add(LengthValidator.max(10));//add the component first before you add the handlerform.add(tarea);tarea.add(new FXValidationAjaxHandler(onblur));
otherwise, and exception will be thrown.Marco  RuudNOTE: due to a previously erronomous commit you will still get afilename-case warning when checking out wicket-contrib-dojo onBasicTooltipTutorial.xml
, this is in the process of bieng fixed, but cantake a few days. It should not affect checked out code. Hi, I tried FX AJAX Validation and it works great with TextField. Thanks for the great job !
 But I found that it does not work with TextArea (raise Unmodified related exception from ValueMap) . Have any body tried ? On 11/25/05, *Ruud Booltink* 
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi all, We're proud to anounce our first real contrib-dojo release :)
 This release contains: Dojo FX Decorators Dojo FX Tooltip FX ajax Validation FXFeedbackIndicator xdocs updated with new site Example applications
 You can check our release at http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/ Have fun with the release, and if you have any comments, please feel
 free to post them on the mailinglist :) Regards, Ruud and Marco --- This 
SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems?Stop!Download the new AJAX search engine that makes searching your log files as easy as surfing theweb.DOWNLOAD
 SPLUNK! http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click 
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net mailto:Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user -- Ingram Chen Java [EMAIL PROTECTED] Institue of BioMedical Sciences Academia Sinica Taiwan blog: 
http://www.javaworld.com.tw/roller/page/ingramchen---This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?Stop!Download the new AJAX search engine that makessearching your log files as easy as surfing theweb.DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user-- Ingram ChenJava [EMAIL PROTECTED]
Institue of BioMedical Sciences Academia Sinica Taiwanblog: http://www.javaworld.com.tw/roller/page/ingramchen


Re: [Wicket-user] New Wicket-contrib-dojo release

2005-11-30 Thread Eelco Hillenius

 If you wan't to contribute, feel free to do so. :)

Erm... he doesn't have commit rights? :)

I think it is an open RFE to upgrade this js files, right?

Eelco


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_idv37alloc_id865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] New Wicket-contrib-dojo release

2005-11-30 Thread Marco van de Haar

yes, did not htink about that...

please request a build and we will be able to update it.

Marco

Eelco Hillenius wrote:


If you wan't to contribute, feel free to do so. :)
   



Erm... he doesn't have commit rights? :)

I think it is an open RFE to upgrade this js files, right?

Eelco


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_idv37alloc_id865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

 





---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


RE: [Wicket-user] New Wicket-contrib-dojo release

2005-11-30 Thread Vinsen, Kevin
I have it working Dojo Dropdown's (thanks to Igor for the magic
listItem.setRenderBodyOnly(true)) 

I did a bit of an ugly cludge to save me having to go new PageLink(link,
Blah) - I've create a MenuLink extends Link

I can convert it to JDK1.4.2 easy enough. Who shoud I send the code to? We'd
also need to restructure the dojo-contrib slightly to get the javascript to
work


Kevin 

-Original Message-
From: Marco van de Haar [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 30 November 2005 5:49 PM
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] New Wicket-contrib-dojo release

yes, did not htink about that...

please request a build and we will be able to update it.

Marco

Eelco Hillenius wrote:

If you wan't to contribute, feel free to do so. :)



Erm... he doesn't have commit rights? :)

I think it is an open RFE to upgrade this js files, right?

Eelco


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log 
files for problems?  Stop!  Download the new AJAX search engine that 
makes searching your log files as easy as surfing the  web.  DOWNLOAD
SPLUNK!
http://ads.osdn.com/?ad_idv37alloc_id865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

  




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


DISCLAIMER:---
This Email may contain confidential and/or privileged information and is 
intended 
solely for the addressee(s) named. If you have received this information in 
error, or
are advised that you have been posted this Email by accident, please notify the 
sender by return Email, do not redistribute it, delete the Email and keep no 
copies.
--


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] New Wicket-contrib-dojo release

2005-11-30 Thread Marco van de Haar
you can mail it either to me, [EMAIL PROTECTED], or to 
[EMAIL PROTECTED] I am sorry to say that we are currently up to 
our necks in fixing annoying bugs, wrestling with sourceforge, and 
writing our graduation report. I expect that we will not have time to 
add and especialy to restructure right now. but if you mail what has 
to be done, we can see when we can, or maybe some other wicket-stuff 
contributer could handle it?

Sorry for the inconvenience,

Marco  Ruud

Vinsen, Kevin wrote:


I have it working Dojo Dropdown's (thanks to Igor for the magic
listItem.setRenderBodyOnly(true)) 


I did a bit of an ugly cludge to save me having to go new PageLink(link,
Blah) - I've create a MenuLink extends Link

I can convert it to JDK1.4.2 easy enough. Who shoud I send the code to? We'd
also need to restructure the dojo-contrib slightly to get the javascript to
work


Kevin 


-Original Message-
From: Marco van de Haar [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 30 November 2005 5:49 PM

To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] New Wicket-contrib-dojo release

yes, did not htink about that...

please request a build and we will be able to update it.

Marco

Eelco Hillenius wrote:

 


If you wan't to contribute, feel free to do so. :)
  

 


Erm... he doesn't have commit rights? :)

I think it is an open RFE to upgrade this js files, right?

Eelco


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log 
files for problems?  Stop!  Download the new AJAX search engine that 
makes searching your log files as easy as surfing the  web.  DOWNLOAD
   


SPLUNK!
 


http://ads.osdn.com/?ad_idv37alloc_id865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user



   





---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


DISCLAIMER:---
This Email may contain confidential and/or privileged information and is intended 
solely for the addressee(s) named. If you have received this information in error, or
are advised that you have been posted this Email by accident, please notify the 
sender by return Email, do not redistribute it, delete the Email and keep no copies.

--


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

 





---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


RE: [Wicket-user] New Wicket-contrib-dojo release

2005-11-29 Thread Vinsen, Kevin
Nice piece of work, but it won't work with other Dojo elements.

I tried to build a menu using Dojo DropdownButtons as a Wicket panel. But
the DropdownButtons element of Dojo requires the directory src/widget to be
accessable under dojo.js. The only way I got this to work was to move the
dojo javascript libraries to /WebRoot - then it worked mostly correctly. I
need to figure a way to remove span tags I'm using to build ul li
/li /ul clusters for each og the menu items

If you're interested I can convert my code from JDK1.5 to 1.4 and submitted
it into the contrib-dojo area.

Kevin 

-Original Message-
From: Marco van de Haar [mailto:[EMAIL PROTECTED] 
Sent: Monday, 28 November 2005 10:54 PM
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] New Wicket-contrib-dojo release

We fixed the FXAjaxValidationHandler so that is supposed to work with all
FormComponents now, as was intended.
We tested it on a TextArea and it works fine. The fix is not in the 0.3
release, but you can check out wicket-contrib-dojo
FXValidationAjaxHandler.java We will add the fixed handler to our next
release and add a TextArea example in our next example app.

We did have to add a restriction to our handler. The FormComponent where the
handler is bound to has to be added to a page BEFORE you add the handler
like this:

tarea = new TextArea(tarea, new
PropertyModel(ValidationTestPage.this, textValue));
tarea.add(LengthValidator.max(10));
   
//add the component first before you add the handler
form.add(tarea);
tarea.add(new FXValidationAjaxHandler(onblur));

otherwise, and exception will be thrown.

Marco  Ruud

NOTE: due to a previously erronomous commit you will still get a
filename-case warning when checking out wicket-contrib-dojo on
BasicTooltipTutorial.xml, this is in the process of bieng fixed, but can
take a few days. It should not affect checked out code.

 Hi,
 I tried FX AJAX Validation and it works great with TextField. 
 Thanks for the great job !

 But I found that it does not work with TextArea (raise Unmodified 
 related exception from ValueMap) .
 Have any body tried ?


 On 11/25/05, *Ruud Booltink* [EMAIL PROTECTED] 
 mailto:[EMAIL PROTECTED] wrote:

 Hi all,

 We're proud to anounce our first real contrib-dojo release :)
 This release contains:
 Dojo FX Decorators
 Dojo FX Tooltip
 FX ajax Validation
 FXFeedbackIndicator
 xdocs updated with new site
 Example applications

 You can check our release at
 http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/

 Have fun with the release, and if you have any comments, please feel
 free to post them on the mailinglist :)

 Regards,

 Ruud and Marco




 ---
 This SF.net email is sponsored by: Splunk Inc. Do you grep through
 log files
 for problems?  Stop!  Download the new AJAX search engine that makes
 searching your log files as easy as surfing the  web.  DOWNLOAD
 SPLUNK!
 http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
 http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 mailto:Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user




 --
 Ingram Chen
 Java [EMAIL PROTECTED]
 Institue of BioMedical Sciences Academia Sinica Taiwan
 blog: http://www.javaworld.com.tw/roller/page/ingramchen




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


DISCLAIMER:---
This Email may contain confidential and/or privileged information and is 
intended 
solely for the addressee(s) named. If you have received this information in 
error, or
are advised that you have been posted this Email by accident, please notify the 
sender by return Email, do not redistribute it, delete the Email and keep no 
copies.
--


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket

Re: [Wicket-user] New Wicket-contrib-dojo release

2005-11-29 Thread Ruud Booltink

Hi Kevin,

I think there is some misconception here :) We only support the 
components which we have implemented. The dojo.js file is a 
browseriobuild as described in the VERSION-INFO.txt file. If you need 
more Dojo functionality, please upgrade Dojo.js and the VERSION-INFO.txt 
file.


If you wan't to contribute, feel free to do so. :)

Regards,
Ruud

Vinsen, Kevin wrote:


Nice piece of work, but it won't work with other Dojo elements.

I tried to build a menu using Dojo DropdownButtons as a Wicket panel. But
the DropdownButtons element of Dojo requires the directory src/widget to be
accessable under dojo.js. The only way I got this to work was to move the
dojo javascript libraries to /WebRoot - then it worked mostly correctly. I
need to figure a way to remove span tags I'm using to build ul li
/li /ul clusters for each og the menu items

If you're interested I can convert my code from JDK1.5 to 1.4 and submitted
it into the contrib-dojo area.

Kevin 


-Original Message-
From: Marco van de Haar [mailto:[EMAIL PROTECTED] 
Sent: Monday, 28 November 2005 10:54 PM

To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] New Wicket-contrib-dojo release

We fixed the FXAjaxValidationHandler so that is supposed to work with all
FormComponents now, as was intended.
We tested it on a TextArea and it works fine. The fix is not in the 0.3
release, but you can check out wicket-contrib-dojo
FXValidationAjaxHandler.java We will add the fixed handler to our next
release and add a TextArea example in our next example app.

We did have to add a restriction to our handler. The FormComponent where the
handler is bound to has to be added to a page BEFORE you add the handler
like this:

   tarea = new TextArea(tarea, new
PropertyModel(ValidationTestPage.this, textValue));
   tarea.add(LengthValidator.max(10));
  
   //add the component first before you add the handler

   form.add(tarea);
   tarea.add(new FXValidationAjaxHandler(onblur));

otherwise, and exception will be thrown.

Marco  Ruud

NOTE: due to a previously erronomous commit you will still get a
filename-case warning when checking out wicket-contrib-dojo on
BasicTooltipTutorial.xml, this is in the process of bieng fixed, but can
take a few days. It should not affect checked out code.

 


Hi,
   I tried FX AJAX Validation and it works great with TextField. 
Thanks for the great job !


But I found that it does not work with TextArea (raise Unmodified 
related exception from ValueMap) .

Have any body tried ?


On 11/25/05, *Ruud Booltink* [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


   Hi all,

   We're proud to anounce our first real contrib-dojo release :)
   This release contains:
   Dojo FX Decorators
   Dojo FX Tooltip
   FX ajax Validation
   FXFeedbackIndicator
   xdocs updated with new site
   Example applications

   You can check our release at
   http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/

   Have fun with the release, and if you have any comments, please feel
   free to post them on the mailinglist :)

   Regards,

   Ruud and Marco




   ---
   This SF.net email is sponsored by: Splunk Inc. Do you grep through
   log files
   for problems?  Stop!  Download the new AJAX search engine that makes
   searching your log files as easy as surfing the  web.  DOWNLOAD
   SPLUNK!
   http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
   http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   mailto:Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user




--
Ingram Chen
Java [EMAIL PROTECTED]
Institue of BioMedical Sciences Academia Sinica Taiwan
blog: http://www.javaworld.com.tw/roller/page/ingramchen
   






---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


DISCLAIMER:---
This Email may contain confidential and/or privileged information and is intended 
solely for the addressee(s) named. If you have received this information in error, or
are advised that you have been posted this Email by accident, please notify the 
sender by return Email, do not redistribute it, delete the Email and keep no copies

Re: [Wicket-user] New Wicket-contrib-dojo release

2005-11-28 Thread Marco van de Haar
I isolated the problem to the onComponentTag(final ComponentTag tag) 
method in our AjaxHandler.
There we directly ajusted the componnent's attributemap. This, ofcourse, 
is not supposed to work because the map is often immutable. It does seem 
to work however, for textfields, and not for TextAreas. The normal 
sollution for this would be to use attributemodifiers (AM) instead.


-I tried doing this in onBind(), where I also use an AM to set the 
component's ID value, but I get an error that I can not use 
getCallbackURL() (which I definetely need for Ajax) because the 
component does not have a page yet...
-I tried adding an AM in onComponentTag(), but it does not actually do 
anything, the attribute is not present in the generated HTML...
-I even thought of using onComponentRendered(), but then it would be to 
late to add any attributes.


My question.how can I solve this?

old method (not working for TextAreas, but working for TextFields)

public final void onComponentTag(final ComponentTag tag)
{
   final ValueMap attributes = tag.getAttributes();
   final String attributeValue =
   javascript:+ componentId  + _validate(' + 
getCallbackUrl() + ', ' + formComponent.getInputName() + ', this);;
   attributes.put(eventName, attributeValue);
}


replacing code:

this.formComponent.add(new AttributeModifier(eventName, true, new 
Model(javascript:+ componentId  + _validate(' + getCallbackUrl() + 
', ' + formComponent.getInputName() + ', this);)));


where can I add this?

Marco
Ingram Chen wrote:


Hi,
I tried FX AJAX Validation and it works great with TextField. 
Thanks for the great job !


But I found that it does not work with TextArea (raise Unmodified 
related exception from ValueMap) .

Have any body tried ?


On 11/25/05, *Ruud Booltink* [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


Hi all,

We're proud to anounce our first real contrib-dojo release :)
This release contains:
Dojo FX Decorators
Dojo FX Tooltip
FX ajax Validation
FXFeedbackIndicator
xdocs updated with new site
Example applications

You can check our release at
http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/

Have fun with the release, and if you have any comments, please feel
free to post them on the mailinglist :)

Regards,

Ruud and Marco




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through
log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD
SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
mailto:Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user




--
Ingram Chen
Java [EMAIL PROTECTED]
Institue of BioMedical Sciences Academia Sinica Taiwan
blog: http://www.javaworld.com.tw/roller/page/ingramchen 





---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] New Wicket-contrib-dojo release

2005-11-28 Thread Marco van de Haar
We fixed the FXAjaxValidationHandler so that is supposed to work with 
all FormComponents now, as was intended.
We tested it on a TextArea and it works fine. The fix is not in the 0.3 
release, but you can check out wicket-contrib-dojo 
FXValidationAjaxHandler.java We will add the fixed handler to our next 
release and add a TextArea example in our next example app.


We did have to add a restriction to our handler. The FormComponent where 
the handler is bound to has to be added to a page BEFORE you add the 
handler like this:


   tarea = new TextArea(tarea, new 
PropertyModel(ValidationTestPage.this, textValue));

   tarea.add(LengthValidator.max(10));
  
   //add the component first before you add the handler

   form.add(tarea);
   tarea.add(new FXValidationAjaxHandler(onblur));

otherwise, and exception will be thrown.

Marco  Ruud

NOTE: due to a previously erronomous commit you will still get a 
filename-case warning when checking out wicket-contrib-dojo on 
BasicTooltipTutorial.xml, this is in the process of bieng fixed, but can 
take a few days. It should not affect checked out code.



Hi,
I tried FX AJAX Validation and it works great with TextField. 
Thanks for the great job !


But I found that it does not work with TextArea (raise Unmodified 
related exception from ValueMap) .

Have any body tried ?


On 11/25/05, *Ruud Booltink* [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


Hi all,

We're proud to anounce our first real contrib-dojo release :)
This release contains:
Dojo FX Decorators
Dojo FX Tooltip
FX ajax Validation
FXFeedbackIndicator
xdocs updated with new site
Example applications

You can check our release at
http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/

Have fun with the release, and if you have any comments, please feel
free to post them on the mailinglist :)

Regards,

Ruud and Marco




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through
log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD
SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
mailto:Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user




--
Ingram Chen
Java [EMAIL PROTECTED]
Institue of BioMedical Sciences Academia Sinica Taiwan
blog: http://www.javaworld.com.tw/roller/page/ingramchen 





---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] New Wicket-contrib-dojo release

2005-11-25 Thread Juergen Donnerstag
Any example app we can put online on wicket-library?

Juergen

On 11/25/05, Ruud Booltink [EMAIL PROTECTED] wrote:
 Hi all,

 We're proud to anounce our first real contrib-dojo release :)
 This release contains:
 Dojo FX Decorators
 Dojo FX Tooltip
 FX ajax Validation
 FXFeedbackIndicator
 xdocs updated with new site
 Example applications

 You can check our release at
 http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/

 Have fun with the release, and if you have any comments, please feel
 free to post them on the mailinglist :)

 Regards,

 Ruud and Marco




 ---
 This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
 for problems?  Stop!  Download the new AJAX search engine that makes
 searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
 http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_idv37alloc_id865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] New Wicket-contrib-dojo release

2005-11-25 Thread Ruud Booltink
We have an example app based on the wicket quickstart project on the 
sourceforge website 
(http://sourceforge.net/project/showfiles.php?group_id=134391package_id=164293) 
that you can use.

(wicket-contrib-dojo-examples-0.2.zip) It is a simple three page example.

I don't know if this is what you mean, but you're free to use it.

Ruud

Juergen Donnerstag wrote:


Any example app we can put online on wicket-library?

Juergen

On 11/25/05, Ruud Booltink [EMAIL PROTECTED] wrote:
 


Hi all,

We're proud to anounce our first real contrib-dojo release :)
This release contains:
Dojo FX Decorators
Dojo FX Tooltip
FX ajax Validation
FXFeedbackIndicator
xdocs updated with new site
Example applications

You can check our release at
http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/

Have fun with the release, and if you have any comments, please feel
free to post them on the mailinglist :)

Regards,

Ruud and Marco




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

   




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_idv37alloc_id865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

 





---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] New Wicket-contrib-dojo release

2005-11-25 Thread Juergen Donnerstag
The *.war contained in the example's zip throws the following error

java.lang.NoClassDefFoundError: wicket/contrib/markup/html/tooltip/TooltipPanel
java.lang.Class.getDeclaredFields0(Native Method)
java.lang.Class.privateGetDeclaredFields(Class.java:2232)
java.lang.Class.getDeclaredField(Class.java:1852)
java.io.ObjectStreamClass.getDeclaredSUID(ObjectStreamClass.java:1555)
java.io.ObjectStreamClass.access$600(ObjectStreamClass.java:47)
java.io.ObjectStreamClass$2.run(ObjectStreamClass.java:381)
java.security.AccessController.doPrivileged(Native Method)
java.io.ObjectStreamClass.init(ObjectStreamClass.java:373)
java.io.ObjectStreamClass.lookup(ObjectStreamClass.java:268)
java.io.ObjectOutputStream.writeClass(ObjectOutputStream.java:1103)

Juergen

On 11/25/05, Johan Compagner [EMAIL PROTECTED] wrote:
 yes it would be very nice to have some cool wicket-ajax examples live!

 johan



 On 11/25/05, Juergen Donnerstag  [EMAIL PROTECTED] wrote:
 
  Any example app we can put online on wicket-library?
 
  Juergen
 
  On 11/25/05, Ruud Booltink [EMAIL PROTECTED] wrote:
   Hi all,
  
   We're proud to anounce our first real contrib-dojo release :)
   This release contains:
   Dojo FX Decorators
   Dojo FX Tooltip
   FX ajax Validation
   FXFeedbackIndicator
   xdocs updated with new site
   Example applications
  
   You can check our release at
  
 http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/
  
   Have fun with the release, and if you have any comments, please feel
   free to post them on the mailinglist :)
  
   Regards,
  
   Ruud and Marco
  
  
  
  
   ---
   This SF.net email is sponsored by: Splunk Inc. Do you grep through log
 files
   for problems?  Stop!  Download the new AJAX search engine that makes
   searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
   http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
  
 https://lists.sourceforge.net/lists/listinfo/wicket-user
  
 
 
  ---
  This SF.net email is sponsored by: Splunk Inc. Do you grep through log
 files
  for problems?  Stop!  Download the new AJAX search engine that makes
  searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
  http://ads.osdn.com/?ad_idv37alloc_id865opclick
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_idv37alloc_id865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] New Wicket-contrib-dojo release

2005-11-25 Thread Juergen Donnerstag
The examples don't build with maven and not with eclipse after maven
clean eclipse

Juergen

On 11/25/05, Juergen Donnerstag [EMAIL PROTECTED] wrote:
 The *.war contained in the example's zip throws the following error

 java.lang.NoClassDefFoundError: 
 wicket/contrib/markup/html/tooltip/TooltipPanel
 java.lang.Class.getDeclaredFields0(Native Method)
 java.lang.Class.privateGetDeclaredFields(Class.java:2232)
 java.lang.Class.getDeclaredField(Class.java:1852)
 java.io.ObjectStreamClass.getDeclaredSUID(ObjectStreamClass.java:1555)
 java.io.ObjectStreamClass.access$600(ObjectStreamClass.java:47)
 java.io.ObjectStreamClass$2.run(ObjectStreamClass.java:381)
 java.security.AccessController.doPrivileged(Native Method)
 java.io.ObjectStreamClass.init(ObjectStreamClass.java:373)
 java.io.ObjectStreamClass.lookup(ObjectStreamClass.java:268)
 java.io.ObjectOutputStream.writeClass(ObjectOutputStream.java:1103)

 Juergen

 On 11/25/05, Johan Compagner [EMAIL PROTECTED] wrote:
  yes it would be very nice to have some cool wicket-ajax examples live!
 
  johan
 
 
 
  On 11/25/05, Juergen Donnerstag  [EMAIL PROTECTED] wrote:
  
   Any example app we can put online on wicket-library?
  
   Juergen
  
   On 11/25/05, Ruud Booltink [EMAIL PROTECTED] wrote:
Hi all,
   
We're proud to anounce our first real contrib-dojo release :)
This release contains:
Dojo FX Decorators
Dojo FX Tooltip
FX ajax Validation
FXFeedbackIndicator
xdocs updated with new site
Example applications
   
You can check our release at
   
  http://wicket-stuff.sourceforge.net/wicket-contrib-dojo/
   
Have fun with the release, and if you have any comments, please feel
free to post them on the mailinglist :)
   
Regards,
   
Ruud and Marco
   
   
   
   
---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log
  files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
   
  https://lists.sourceforge.net/lists/listinfo/wicket-user
   
  
  
   ---
   This SF.net email is sponsored by: Splunk Inc. Do you grep through log
  files
   for problems?  Stop!  Download the new AJAX search engine that makes
   searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
   http://ads.osdn.com/?ad_idv37alloc_id865opclick
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
 
 



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_idv37alloc_id865op=click
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user