Re: Streaming a huge ZIP file

2007-12-12 Thread Gabor Szokoli
Thanks all! On Dec 12, 2007 8:48 AM, Thomas Singer [EMAIL PROTECTED] wrote: IIRC, DownloadLink and Igor's anonymous class will lock the session, so if you have one downloading over a very slow connection, other users will get a timeout. I beleive I have separate sessions for each user, so

Re: Component.visitParents visits the calling component as well

2007-12-12 Thread Eelco Hillenius
On Dec 11, 2007 10:24 AM, Igor Vaynberg [EMAIL PROTECTED] wrote: hm, i dont think it is correct. wondering if we can change it this late in the game though...open a jira issue please. eelco its your baby...is this intentional or is it a bug? That's too long ago for me to remember. I do think

How to know the markupStream of a border body

2007-12-12 Thread buealb
Hi, I have a simple border: wicket:border test wicket:body/ /wicket:border and when I use this border I add content in the body: div wicket:id=myBorder more text more text /div Now, I want to know what is the markupStream of this border. I'm trying with MarkupStream st

Re: When to use getModelObject, getConvertedInput, getInput

2007-12-12 Thread wicket user
Ok that's cool but on an AjaxFormComponentUpdatingBehavior the model is null/hasn't been set so you can't use it? What happens if you want to base a decision on the value that the user has just changed to? On 11/12/2007, Johan Compagner [EMAIL PROTECTED] wrote: you shouldn't call

Re: How to get resources from our web-app context ?

2007-12-12 Thread Joshua Jackson
Thank you so much. That was helpful. It works now :) On 12/12/07, wicket user [EMAIL PROTECTED] wrote: this is what spec says getRealPath public java.lang.String *getRealPath*(java.lang.String path) Returns a String containing the real path for a given virtual path. For example, the path

Re: HTML code inside language file

2007-12-12 Thread Sébastien Piller
Marco Aurélio Silva a écrit : Hi I'm trying to use some HTML codes with internationalized page. For example, some texts have words in italic and I need to use the i tag. But when wicket renders the text the i tag is showed on screen instead make the word italic. Any suggestion? Thank you Marco

HTML code inside language file

2007-12-12 Thread Marco Aurélio Silva
Hi I'm trying to use some HTML codes with internationalized page. For example, some texts have words in italic and I need to use the i tag. But when wicket renders the text the i tag is showed on screen instead make the word italic. Any suggestion? Thank you Marco

Re: HTML code inside language file

2007-12-12 Thread Marco Aurélio Silva
And is there a way to this without a label, houst with the wicket:message? On Dec 12, 2007 1:23 PM, Sébastien Piller [EMAIL PROTECTED] wrote: Marco Aurélio Silva a écrit : Hi I'm trying to use some HTML codes with internationalized page. For example, some texts have words in italic and

Re: How to know the markupStream of a border body

2007-12-12 Thread Igor Vaynberg
and why do you need to know the markup stream? -igor On Dec 12, 2007 12:42 AM, buealb [EMAIL PROTECTED] wrote: Hi, I have a simple border: wicket:border test wicket:body/ /wicket:border and when I use this border I add content in the body: div wicket:id=myBorder more text more

Re: Wish list for 1.4

2007-12-12 Thread Scott Swank
+1 for 1.4 = 1.3 + Generics (nuthin' else) On Dec 12, 2007 11:37 AM, Uwe Schäfer [EMAIL PROTECTED] wrote: Igor Vaynberg schrieb: go nuts Transparent clustering support out of the box and enabled by default those who need it will be able to enable it. for all the other 98%, this adds

Custom styles for trees

2007-12-12 Thread Loren Cole
I'd like to remove the folder and page icons from a LinkTree and I'm not entirely sure how to go about it. As far as I can tell I need to create a LinkIconPanel instead and then add a blank image component to it... Or is there some way I can reference the image and set it's visible flag? Why

accessing parent model from child component -- redundant markup element using same field

2007-12-12 Thread jy
Hello. A newbie here. Is there a way for a child component to get access to the model added to the parent component? I have two labels in the child component that use the same model field. Since each label requires unique id, I can't use CompoundPropertyModel, can i? I saw the example with

Re: Custom styles for trees

2007-12-12 Thread Loren Cole
Ah! thank you. I apologize if I'm resurrecting a dead horse, but why isn't this done with css? I saw some discussion about it from last summer, but the last comment in the thread suggested that the status quo was easy enough. My unasked for two cents is any thing you can do to isolate look and

Re: Custom styles for trees

2007-12-12 Thread Peter Ertl
You could submit a suggestion on jira... After all this is open source :-) Am 12.12.2007 um 23:39 schrieb Loren Cole: Ah! thank you. I apologize if I'm resurrecting a dead horse, but why isn't this done with css? I saw some discussion about it from last summer, but the last comment in

Re: Wish list for 1.4

2007-12-12 Thread Igor Vaynberg
its a wish list, whether those things are going to make it into 1.4 or not can be decided later we havent had the official discussion of what 1.4 will be yet... -igor On Dec 12, 2007 11:04 AM, Igor Vaynberg [EMAIL PROTECTED] wrote: go nuts

Re: Wish list for 1.4

2007-12-12 Thread Maurice Marrink
Make Swarm (or at least Wasp) part of wicket core. Hey, its a wish list, right? :) Maurice On Dec 12, 2007 11:56 PM, Igor Vaynberg [EMAIL PROTECTED] wrote: add that to the wishlist with a description of what it is johan -igor On Dec 12, 2007 12:41 PM, Johan Compagner [EMAIL PROTECTED]

Re: Custom styles for trees

2007-12-12 Thread Matej Knopp
Hi There are no plans to do this. If you want to control this using CSS just develop your own alternative to LinkIconPanel, it shouldn't be difficult. The reason why there are images resource used to specify the icon is that it's easier to control this from code while using CSS would be IMHO too