[ANN] wicket-dnd project

2009-10-03 Thread Sven Meier
Hi all, I'm happy to announce wicket-dnd, a generic drag and drop framework for Wicket. The API has not been fully stabilized yet but you are invited to take a first look: http://code.google.com/p/wicket-dnd/ Have fun Sven

table columns ajax update

2009-10-03 Thread vineet semwal
can i update some columns in wicket-stuff table with ajax timer ? i have seen wicket-stuff table example but can't understand how to do it .. -- regards, Vineet Semwal

Re: [tinymce] problem adding/removing TinyMceBehavior dinamically

2009-10-03 Thread Daniele Dellafiore
I get what the real problem is: tinyMce saves internally each editor that is added to a page in a list called, well, editors. When I remove the behavior from a textField, I should also call tinyMce.remove passing the editors as a parameter. I will try to do this but any help is appreciated :)

Re: [ANN] wicket-dnd project

2009-10-03 Thread Uwe Schäfer
Sven Meier schrieb: I'm happy to announce wicket-dnd, a generic drag and drop framework for Wicket. looks pretty slick! congrats. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: ProgressBar demo doesn't work for firefox 3.5.3

2009-10-03 Thread Vladimir K
The UploadProgressBar does not work for me. -- View this message in context: http://www.nabble.com/ProgressBar-demo-doesn%27t-work-for-firefox-3.5.3-tp25717607p25729075.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: [ANN] wicket-dnd project

2009-10-03 Thread Ralf Eichinger
Sven Meier wrote: I'm happy to announce wicket-dnd, a generic drag and drop framework for Wicket. http://code.google.com/p/wicket-dnd/ I added it to the Wicket Wiki: http://cwiki.apache.org/confluence/display/WICKET/Related+Projects

Re: [ANN] wicket-dnd project

2009-10-03 Thread Martin Makundi
BTW, Why is the demo very slow? Is this what it is like in reality? ** Martin 2009/10/3 Ralf Eichinger ralf.eichin...@pixotec.de: Sven Meier wrote: I'm happy to announce wicket-dnd, a generic drag and drop framework for Wicket.    http://code.google.com/p/wicket-dnd/ I added it to the

Re: [ANN] wicket-dnd project

2009-10-03 Thread Sven Meier
Well, google apps isn't what I call a performant hosting ;). 'In reality' (on your own server) dnd operations are as fast as any other AJAX roundtrip. Regards Sven Martin Makundi wrote: BTW, Why is the demo very slow? Is this what it is like in reality? ** Martin 2009/10/3 Ralf Eichinger

Re: table columns ajax update

2009-10-03 Thread Pedro Santos
Hi Semwal, I'm currently working on Table class design to turn simple this kind of extension. On Sat, Oct 3, 2009 at 10:38 AM, vineet semwal vineetsemwal1...@gmail.comwrote: can i update some columns in wicket-stuff table with ajax timer ? i have seen wicket-stuff table example but can't

How to store/load strings shared by many (but not all) pages?

2009-10-03 Thread David Chang
I am reading Wicket in Action and have this i18n/i10n-related question : Suppose that I have a string that is used on multiple (but NOT ALL) pages. One solution is that I can put this string in the property files for each page on which the string is used. Any other better solutions? Thanks

Start a panel, border, or page with an XML declaration?

2009-10-03 Thread David Chang
Hello, I am reading Wicket in Action. The Tip on page 291 says it is good practice to start your panels and borders (possibly your pages) with an XML declaration to force Wicket to work with them using the proper encoding. Does this mean that starting a panel, border, or page with something

Pagemap locked

2009-10-03 Thread Douglas Ferguson
I am getting seeing the following stack, but I'm not sure what the client is doing to cause this. Is there anyway I can tie this to the request logger to try and determine what they were doing that locked the pagemap? Thanks, java.io.FileOutputStream MIME-Version: 1.0 Content-Type:

Re: How to store/load strings shared by many (but not all) pages?

2009-10-03 Thread Igor Vaynberg
YourApplicationClass.properties sitting next to you YourApplicationClass.java/class will do the trick. all components/pages have access to properties stored there. -igor On Sat, Oct 3, 2009 at 8:32 PM, David Chang david_q_zh...@yahoo.com wrote: I am reading Wicket in Action and have this