Re: Replacing markup generated by a Behavior

2010-10-29 Thread Jeremy Thomerson
On Fri, Oct 29, 2010 at 12:39 AM, Clint Checketts checke...@gmail.comwrote: Elegant! I'd been trying to think of ways to add my own markup ID and piggyback off any render requests that redraw the component to trigger and render the feedback, just using the component markupId will work great!

Re: Replacing markup generated by a Behavior

2010-10-29 Thread Maarten Bosteels
Clint, Very interesting ! Please share some code and docs on https://cwiki.apache.org/WICKET/ Once you get it working ;-) Thanks :-) On Fri, Oct 29, 2010 at 8:49 AM, Jeremy Thomerson jer...@wickettraining.com wrote: On Fri, Oct 29, 2010 at 12:39 AM, Clint Checketts checke...@gmail.com

Re: Problems displaying a PDF from stream

2010-10-29 Thread Alex Zeit
I mean going to menu Clear private data (in German version it is Neueste Chronik löschen). Yes Cookies are also removed. For now I implemented my PDF generator as separate Servlet but it has same behaviour unless I disable caching: // Set to expire far in the past.

AW: Problems displaying a PDF from stream

2010-10-29 Thread Stefan Lindner
How does your trigger look like? I mean the a or button or input type=submit element? Does it trigger a page refresh, means does it start a request tot he server? Then you still have a problem with cleared session cookie. You need something like div

Re: Trying to submit form with id that is not in document.

2010-10-29 Thread Leszek Gawron
On 2010-10-29 14:06, Maris Orbidans wrote: Hi I have a modal window with a panel inside it. After I refresh the panel via ajax all buttons inside the panel stop working. Submit doesn't work and there is this message in ajax debug window: ERROR: Wicket.Ajax.Call.submitFormById: Trying to submit

RE: Trying to submit form with id that is not in document.

2010-10-29 Thread Maris Orbidans
Yes, it worked. Thanks a lot. I hope developers will fix the issue. Maris -Original Message- From: Leszek Gawron [mailto:lgaw...@apache.org] Sent: 29 October 2010 14:20 To: users@wicket.apache.org Subject: Re: Trying to submit form with id that is not in document. On 2010-10-29

Re: Trying to submit form with id that is not in document.

2010-10-29 Thread Martin Grigorov
It is documented in ModalWindow javadoc: If you want to use form in modal window component make sure that you put the modal window itself * in another form (nesting forms is legal in Wicket) and that the form on modal window is submitted * before the window get closed. On Fri, Oct 29, 2010 at

Wicket Stuff TinyMCE Update?

2010-10-29 Thread Josh Glassman
Hi All, Who if anyone is in charge of the Wicket Stuff TinyMCE project? I have been having some issues with it and noticed that the TinyMCE files have not been updated since the initial 3.3 release. I tried simply replacing the tiny_mce folder inside a copy of the tinymce-1.4.12.jar with the

Re: Wicket Stuff TinyMCE Update?

2010-10-29 Thread Igor Vaynberg
dont think anyone is maintaining the project. you are welcome to take it over. -igor On Fri, Oct 29, 2010 at 8:40 AM, Josh Glassman josh...@gmail.com wrote: Hi All, Who if anyone is in charge of the Wicket Stuff TinyMCE project? I have been having some issues with it and noticed that the

Re: Wicket Stuff TinyMCE Update?

2010-10-29 Thread Josh Glassman
I would be willing to do so, at least temporarily. How do I get commit permissions, and how do I get a build created and installed to the maven repo? On Fri, Oct 29, 2010 at 11:44 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: dont think anyone is maintaining the project. you are welcome to

Re: Wicket Stuff TinyMCE Update?

2010-10-29 Thread Igor Vaynberg
whats your sf.net username? i can give you access to svn. as far as builds, Michael O'Cleirigh takes care of those on regular basis. you might want to talk to him if you want more details. -igor On Fri, Oct 29, 2010 at 10:05 AM, Josh Glassman josh...@gmail.com wrote: I would be willing to do

Re: Wicket Stuff TinyMCE Update?

2010-10-29 Thread Josh Glassman
Ok, will talk to him. My sf username is joshums. On Fri, Oct 29, 2010 at 1:14 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: whats your sf.net username? i can give you access to svn. as far as builds, Michael O'Cleirigh takes care of those on regular basis. you might want to talk to him if

Re: Wicket Stuff TinyMCE Update?

2010-10-29 Thread Michael O'Cleirigh
Hello, You shouldn't have to do anything other than make the change to have it propogated into maven. The tinymce artifact is already being distributed as part of wicketstuff-core. This is the current branch tracking wicket 1.4-SNAPSHOT:

Re: Wicket Stuff TinyMCE Update?

2010-10-29 Thread Igor Vaynberg
you are in -igor On Fri, Oct 29, 2010 at 10:26 AM, Josh Glassman josh...@gmail.com wrote: Ok, will talk to him.  My sf username is joshums. On Fri, Oct 29, 2010 at 1:14 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: whats your sf.net username? i can give you access to svn. as far as

set focus in Modal Window

2010-10-29 Thread Henry, Mike [GCG-PFS]
I have successfully set the focus on a text field in a Modal window but after it is closed and re-opened it no longer sets the focus to that field. If I reload the whole parent page it will work once but again If the modal window is closed and re-opened same problem. I have tried all of these with

AW: set focus in Modal Window

2010-10-29 Thread Stefan Lindner
Try this: public class FocusBehavior extends AbstractBehavior { private static final long serialVersionUID = 1L; private Component component; @Override public void bind(final Component component) { this.component = component;

long dropdown list quick select

2010-10-29 Thread fachhoch
Is there any way to quick select a value from a very long dropdown list -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/long-dropdown-list-quick-select-tp3019610p3019610.html Sent from the Users forum mailing list archive at Nabble.com.

Re: long dropdown list quick select

2010-10-29 Thread James Carman
start typing in it? On Fri, Oct 29, 2010 at 2:52 PM, fachhoch fachh...@gmail.com wrote: Is there any way to quick select a value  from a very long dropdown list -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/long-dropdown-list-quick-select-tp3019610p3019610.html

Re: long dropdown list quick select

2010-10-29 Thread fachhoch
please tell me how can I have typing in a dropdown, do you have any examples ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/long-dropdown-list-quick-select-tp3019610p3019631.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Wicket Stuff TinyMCE Update?

2010-10-29 Thread Josh Glassman
Thank you both! I just committed the new files to the 1.4 branch. I'll look into updating the project for 1.5 as soon as I am able. Josh On Fri, Oct 29, 2010 at 1:51 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: you are in -igor On Fri, Oct 29, 2010 at 10:26 AM, Josh Glassman

Re: long dropdown list quick select

2010-10-29 Thread James Carman
Go here: http://wicketstuff.org/wicket14/forminput/ In the locale chooser (give it focus) up at the top (a DDC), start typing letters and it will choose the locale for you. If you're looking for something where you don't have to load the entire list. You can use AutoComplete:

exception

2010-10-29 Thread fachhoch
I get this exception everytime I log in to my application , I donot know what is causing this , please advice where to look for this exception in tomcat code at org.apache.catalina.connector.ResponseFacade.sendRedirect(ResponseFacade.java:435) at

Re: exception

2010-10-29 Thread fachhoch
this is another exception I get after I click on any download link , the file download works without any problem but this exception is thrown I donot know how to control these , code 2010-10-29 15:39:32,221 [http-8080-5] ERROR org.apache.wicket.protocol.http.WicketFilter - closing the buffer

Re: exception

2010-10-29 Thread Altuğ Bilgin Altıntaş
wicket version ? 2010/10/29 fachhoch fachh...@gmail.com this is another exception I get after I click on any download link , the file download works without any problem but this exception is thrown I donot know how to control these , code 2010-10-29 15:39:32,221 [http-8080-5] ERROR

Re: exception

2010-10-29 Thread fachhoch
1.4.8 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/exception-tp3019667p3019908.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: