ListView multiple windows

2007-11-16 Thread wheleph
at org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:442) The problem is that link in ListView may not be resolved. I guess this is because it was in some way "detached" from parent ListView. How to "refresh" that ListView? Or maybe some other ideas? wheleph -- View this

Re: Disabling Palette buttons

2007-11-02 Thread wheleph
} }; removeButton.add(new Image("image", new ResourceReference(Palette.class, "remove.gif"))); removeButton.setOutputMarkupId(true); return removeButton; }

Disabling Palette buttons

2007-11-01 Thread wheleph
removeButton = super.newRemoveComponent(); removeButton.setOutputMarkupId(true); return removeButton; } } [/code] wheleph -- View this message in context: http://www.nabble.com/Disabling-Palette-buttons-tf4732206.html#

Re: disabling of AjaxSubmitLink

2007-10-29 Thread wheleph
Matej Knopp-2 wrote: > > It is already fixed in 1.3. > > -Matej > Thanks Matej. I explored the source of Wicket 1.3 and picked up the solution from there. wheleph -- View this message in context: http://www.nabble.com/disabling-of-AjaxSubmitLink-tf4712370.html#a1348316

disabling of AjaxSubmitLink

2007-10-29 Thread wheleph
Link substitutes <a> element with <span> and thus looks like a plain text. Thus the current behavior of disabled AjaxSubmitLink is not consistent with Link's. Shouldn't it be corrected it the futher versions of Wicket? wheleph -- View this message in context: http://www.

Re: IE DownloadLink problems

2007-10-28 Thread wheleph
wheleph wrote: > > Content-Disposition attachment; filename=%D0%A1 ... > I wonder what encoding is it? > It's url encoding. I used URLCodec from commons-codec (http://commons.apache.org/codec/) package to encode file name for IE but for FF I still need Base64 or Q-encoding.

Re: IE DownloadLink problems

2007-10-26 Thread wheleph
I Explored :) that IE expects input Content-Disposition attachment; filename=%D0%A1 ... instead of Content-Disposition attachment; filename==?utf-8?Q?=D0=A1 ... I wonder what kind of encoding is it? wheleph -- View this message in context: http://www.nabble.com/IE-DownloadLink

IE DownloadLink problems

2007-10-26 Thread wheleph
't help. Firefox displays this name well. Here's the headers the browser receives: DateFri, 26 Oct 2007 12:43:47 GMT Content-Length 1406 content-disposition attachment; filename="=?utf-8?Q?todo.txt?=" Server Jetty(6.1.5) Any ideas? wheleph -- View this

Intercept AjaxRequestTarget

2007-10-25 Thread wheleph
Hello everyone! My application has a lot of ajax components. And every time validation error occurs I need to add my FeedbackPanel to AjaxRequestTarget. Is there a way to do it automatically? I mean to add my FeedbackPanel to every ajax response wheleph -- View this message in context: http

Re: Changing selection in RadioChoice

2007-10-23 Thread wheleph
Now I decided to use RadioGroup with nested Radios. To each radio I attach AjaxEventBehavior for onclick event and update my model taking into account the index of radio clicked. This workaround perfectly satisfies me. Thanks everybody for help. wheleph -- View this message in context: http

Re: Changing selection in RadioChoice

2007-10-23 Thread wheleph
I'm using Wicket 1.2.6. There's no AjaxFormChoiceComponentUpdatingBehavior wheleph -- View this message in context: http://www.nabble.com/Changing-selection-in-RadioChoice-tf4675928.html#a13359898 Sent from the Wicket - User mailing list archive at

Two forms on single page

2007-10-23 Thread wheleph
How to submit two forms by clicking on one link? wheleph -- View this message in context: http://www.nabble.com/Two-forms-on-single-page-tf4675929.html#a13359615 Sent from the Wicket - User mailing list archive at Nabble.com

Changing selection in RadioChoice

2007-10-23 Thread wheleph
reset). I'd like to use Ajax here but simply adding AjaxFormSubmitBehavior to RadioChoice component doesn't work. Any other ideas? wheleph -- View this message in context: http://www.nabble.com/Changing-selection-in-RadioChoice-tf4675928.html#a13359614 Sent from the Wicket - User ma

Re: palette problem

2007-09-11 Thread wheleph
1. I didn't know that list of available elements must contain also list of selected elements (thanks to severian) 2. I provided instance of IChoiceRenderer created by simple new ChoiceRenderer() call (thanks to Al) wheleph -- View this message in context: http://www.nabble.com/palette-problem-tf4

palette problem

2007-09-10 Thread wheleph
| first | | fourth |<-| second | I get ||->| third| ||<-| | I guess this is one of those stupid mistakes you'll never find in your own code. What's wrong with it? wheleph -- View this message in context: http://www.nabble.com/palette-problem-

Re: palette problem

2007-09-10 Thread wheleph
severian wrote: > > The available list should include the full set I think, not just those > that are not currently selected. > > Severian. > > I've tried this. It doesn't help - final Form pupilForm = new PupilForm("pupilForm"); Strin