Re: [IE7] Shrinked popup calendar when inside a table

2008-08-26 Thread Federico Fanton
On Mon, 25 Aug 2008 09:32:33 +0200 Federico Fanton [EMAIL PROTECTED] wrote: On Fri, 22 Aug 2008 15:26:03 +0200 Federico Fanton [EMAIL PROTECTED] wrote: Should I open a JIRA issue? I have a quickstart ready. If nobody has something against it, I'll go on and open it ^^ Done,

Re: Overriding panel markup

2008-08-26 Thread pixologe
shetc wrote: Is it possible to give a newbie some pointers on how this extension would work? Just create a class MyPanel.java class MyPanel extends Panel { // constructors, custom methods etc... } and a markup file MyPanel.html: html body wicket:extend !-- MyPanel specific markup goes

Re: Wicket merchandise take 2

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
Theres one now in white, but I could'mt find a fitted on in black:( The Wicket circle should be lower I guess for a better beer belly fit:) Eelco Hillenius wrote: Neato. Hey, would it be possible to have 'fitted' T-shirts as well besides 'standard' fit? I like to show off my beer belly when I

Re: Wicket merchandise take 2

2008-08-26 Thread Martijn Dashorst
I'd be more interested in getting this lady to showcase our merchandize: http://digg.com/celebrity/A_Salute_to_Alice_the_Snorg_Tee_Girl_PICS She's experienced in wearing tees. Imagine getting a promo round on digg.com for a week Martijn On Tue, Aug 26, 2008 at 9:54 AM, Nino Saturnino

Re: Wicket merchandise take 2

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
Ryan Gravener wrote: I like the idea of a professional shirt, something you can wear in the office to show your support for wicket. However, I don't know about you Europeans but http://images.cafepress.com/product/297944696v9_240x240_Back.jpg would repel the girls in the states. Would it be

Re: Links Issue with TinyMce

2008-08-26 Thread pointbreak+wicketstuff
Yes I introduced those dependencies. So people are really still using stone age java versions. I will have a look at it later this week. For now, you could of course just check out the latest snapshot from svn, and build against java 1.4. The only thing you need to change is the SetComponent

Re: application scope objects in Wicket

2008-08-26 Thread James Perry
Firstly I hope you are enjoying building your first Wicket web app. Is this application scope object immutable? What is the data structure? IMHO, if it's immutable then it's OK to use composition within your WebApplication by adding this object as a field within WebApplication. I would just make

Convenience

2008-08-26 Thread Uwe Schäfer
hi following a pattern i´ve read anywhere (can´t remember), especially when chaining calls, i´d love to be able to: new TextField(..).setRequired().setVisible().setEnabled() instead of having to new TextField(..).setRequired(true).setVisible(true).setEnabled(true) what do you think ? cu uwe

Calls to MarkupCache#putIntoCache does not use the key provided by MarkupCacheKeyProvider

2008-08-26 Thread Edvin Syse
Hi, I have a virtualhosted CMS written in Wicket 1.3 where some of the pages are loaded from the database. This is done using a custom ResourceStreamLocator, configured in the Application#init method. This works good. Different users have different templates loaded for the same Wicket

Displaying HTML formatted text (raw markup) from String

2008-08-26 Thread btakacs
Hi I would need to display HTML formatted text inside my page. The text is stored in the database, so i would need to display it through component. Is there a way to do this? I did not find any specific component for that. Maybe I could Override the renderAll(MarkupStream markupStream) method

Re: Calls to MarkupCache#putIntoCache does not use the key provided by MarkupCacheKeyProvider

2008-08-26 Thread Johan Compagner
put into cache gets the LocationString not the markupCacheKey Because MarkupCache uses 2 maps CacheKey-LocationString LocationString-Markup so that we dont get multiply markup objects for the same markup file. (location) johan On Tue, Aug 26, 2008 at 11:28 AM, Edvin Syse [EMAIL PROTECTED]

Re: Displaying HTML formatted text (raw markup) from String

2008-08-26 Thread Michael Sparer
use a label or a multilinelabel for that and setEscapeModelStrings to false hope that helps regards, Michael btakacs wrote: Hi I would need to display HTML formatted text inside my page. The text is stored in the database, so i would need to display it through component. Is there a way

Re: Displaying HTML formatted text (raw markup) from String

2008-08-26 Thread francisco treacy
setEscapeModelStrings on your Label francisco On Tue, Aug 26, 2008 at 11:29 AM, btakacs [EMAIL PROTECTED] wrote: Hi I would need to display HTML formatted text inside my page. The text is stored in the database, so i would need to display it through component. Is there a way to do this? I

Re: Convenience

2008-08-26 Thread Jan Kriesten
Hi Uwe, new TextField(..).setRequired().setVisible().setEnabled() instead of having to new TextField(..).setRequired(true).setVisible(true).setEnabled(true) what do you think ? nah - you're just lazy. ;-) Not more convenience-methods, there are already too many... Best regards, ---

Re: Convenience

2008-08-26 Thread Martijn Dashorst
While I like the language, I think it is a wrong path, because the number of methods would explode: new TextField().setRequired().setInvisible().isDisabled(); For each setFoo action you would get a setNotFoo action, and corresponding isNotFoo query. Martijn On Tue, Aug 26, 2008 at 11:40 AM,

Re: Calls to MarkupCache#putIntoCache does not use the key provided by MarkupCacheKeyProvider

2008-08-26 Thread Edvin Syse
Hi Johan, OK, so I need to override the LocationString to also include my unique prefix somehow? Where should I do that? -- Edvin Johan Compagner skrev: put into cache gets the LocationString not the markupCacheKey Because MarkupCache uses 2 maps CacheKey-LocationString

Re: Calls to MarkupCache#putIntoCache does not use the key provided by MarkupCacheKeyProvider

2008-08-26 Thread Edvin Syse
Hi again, Johan, I've found something disturbing: MarkupCache#onMarkupNotFound calls putIntoCache(cacheKey, Markup.NO_MARKUP), but putIntoCache has arguments (final String locationString, Markup markup). In my book that seems like the concepts of cacheKey and locationString are mixed. Is

Re: Calls to MarkupCache#putIntoCache does not use the key provided by MarkupCacheKeyProvider

2008-08-26 Thread Johan Compagner
the locationString comes from the markup If that is not given by the markup stream it will fallback to the cache key and it would be very strange in my eyes if 1 stream (the same) has multiply locations at least the default MarkupStreams (based on files) johan On Tue, Aug 26, 2008 at 11:53 AM,

Re: Calls to MarkupCache#putIntoCache does not use the key provided by MarkupCacheKeyProvider

2008-08-26 Thread Johan Compagner
as i just replied in another email if the location string cant be extracted from the stream, which is the case when nothing is found... then the cacheKey is used johan On Tue, Aug 26, 2008 at 12:02 PM, Edvin Syse [EMAIL PROTECTED] wrote: Hi again, Johan, I've found something disturbing:

Re: Convenience

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
Yeah, I agree.. Leaving it at chaining are probably best fit.. Martijn Dashorst wrote: While I like the language, I think it is a wrong path, because the number of methods would explode: new TextField().setRequired().setInvisible().isDisabled(); For each setFoo action you would get a

Re: Calls to MarkupCache#putIntoCache does not use the key provided by MarkupCacheKeyProvider

2008-08-26 Thread Edvin Syse
Johan Compagner skrev: the locationString comes from the markup If that is not given by the markup stream it will fallback to the cache key Aha. OK, that makes sense :) The database-backed page is a basepage extended by other pages, so let's say DbPage is loaded from a database, but MyPage

Re: Displaying HTML formatted text (raw markup) from String

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
yeah you can also see the ancient bbcode component I wrote once for reference, http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-bbcodecomponent btakacs wrote: Hi I would need to display HTML formatted text inside my page. The text is stored in the database, so i would need

Re: Convenience

2008-08-26 Thread Uwe Schäfer
Martijn Dashorst schrieb: hi martijn For each setFoo action you would get a setNotFoo action, and corresponding isNotFoo query. i was not thinking about unsetFoo() methods, really. and !isVisible() is afaik clearer than isNotVisible(), i would not suggest that. i´d be perfectly alright

Re: Convenience

2008-08-26 Thread Uwe Schäfer
Jan Kriesten schrieb: nah - you're just lazy. ;-) i thought it was a good thing. ;) Not more convenience-methods, there are already too many... good point, in a way... cu uwe - To unsubscribe, e-mail: [EMAIL

Save CSS/Stylesheet in Database

2008-08-26 Thread Markus Haspl
hi, i want to save all the CSS Data for each component in the database. That's no problem, i save the key and values for the component in a table. But, i don't know how i can provide the Page and the components the CSS Information. Is there an easy way to have a complete dynamic Stylesheet which

Re: Wicket merchandise take 2

2008-08-26 Thread James Carman
You need to provide a warning in your messages when you're going to say something like that! My monitor can't take having that much coffee spit on it! That was freakin' hilarious! Perhaps we should have a Wicket t-shirt with a picture of Eelco on the front in his fitted Wicket t-shirt! On Mon,

Re: Displaying HTML formatted text (raw markup) from String

2008-08-26 Thread btakacs
Thanks, it works. Michael Sparer wrote: use a label or a multilinelabel for that and setEscapeModelStrings to false hope that helps regards, Michael btakacs wrote: Hi I would need to display HTML formatted text inside my page. The text is stored in the database, so i would

Re: Wicket merchandise take 2

2008-08-26 Thread Yiannis Mavroukakis
Nice, two t-shirts winging themselves my way already :-) What happened to the bib by the way, I wanted one for my youngster! Nino Saturnino Martinez Vazquez Wael wrote: I haven't heard anything from prc @ apache that we could not do this, so im gonna take this as silent approval. So any

Re: Wicket merchandise take 2

2008-08-26 Thread James Carman
On Mon, Aug 25, 2008 at 6:18 PM, Ryan Gravener [EMAIL PROTECTED] wrote: I like the idea of a professional shirt, something you can wear in the office to show your support for wicket. However, I don't know about you Europeans but http://images.cafepress.com/product/297944696v9_240x240_Back.jpg

Re: Implement LabeledLink and ImageLink components - what is the most elegant way?

2008-08-26 Thread Al Maw
For something like this, you probably want to avoid having markup files at all. Seeing as you want something that is both a Link and a Label, a good starting point might be to look at the source code for both. You should be able to extend the Link class, and override onComponentTagBody() in much

build from the wicket-1.4-m3 source failing

2008-08-26 Thread wicket user
Hi, when i try to build the wicket from the wicket-1.4-m3 source its failing with the following message \wicket-1.4-m3\wicket\src\main\java\org\apache\wicket\util\tester\FormTester.java:[600,20] inconvertible types found : org.apache.wicket.markup.html.form.FormComponentcapture of ? required:

Re: Save CSS/Stylesheet in Database

2008-08-26 Thread Michael Sparer
why do you want to do this? why not using HeaderContributors and css files analog to your html files? Markus Haspl wrote: hi, i want to save all the CSS Data for each component in the database. That's no problem, i save the key and values for the component in a table. But, i don't know

Re: No get method defined for expression recorder when using Palette and CompoundPropertyModel

2008-08-26 Thread FakeBoy
I have also the same problem, because my backend bean collection attributes sometimes is null. I have some client logic bind to this attribute a I need that it will be null. I understand that is not so good when Pallete creates some List impl. But I thought about it and I see solution in

Re: Wicket merchandise take 2

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
But how should people know what it's about when you run away? :) Okay i'll adjust then.. James Carman wrote: On Mon, Aug 25, 2008 at 6:18 PM, Ryan Gravener [EMAIL PROTECTED] wrote: I like the idea of a professional shirt, something you can wear in the office to show your support for

Re: Wicket Image - Java Image

2008-08-26 Thread Al Maw
Sounds to me like you're somewhat confused. ;-) Load the image from the classpath into a bufferedimage as you would outside of Wicket (Foo.class.getResourceAsStream() or whatever it is). Draw text, etc. on it as you see fit. Display it with Wicket if you want to via a BufferedDynamicImageResource.

Re: Wicket merchandise take 2

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
The bib are back up.. Yiannis Mavroukakis wrote: Nice, two t-shirts winging themselves my way already :-) What happened to the bib by the way, I wanted one for my youngster! Nino Saturnino Martinez Vazquez Wael wrote: I haven't heard anything from prc @ apache that we could not do this, so im

Re: Save CSS/Stylesheet in Database

2008-08-26 Thread Markus Haspl
because every component has his own css styles, but the users (registered users in the database) should change the look feel of their own page. On Tue, Aug 26, 2008 at 1:53 PM, Michael Sparer [EMAIL PROTECTED]wrote: why do you want to do this? why not using HeaderContributors and css files

Localization issue

2008-08-26 Thread btakacs
Hi I have a page with a TabPanel with a ListView of BookmarkableLinks, and with some contents. I would need to reload the TabPanel, and the contents after changing the locale. I tried the following, but haven't succeeded: add(new Link(enSwitch) { @Override

Wicket resources (css, js and images)?

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
I've been hearing some rants on how merging resources can up the performance, should wicket be able todo this? I mean merging several css's into one etc.. I know it wont work for dynamic css/js/images. But on static it could, even yslow recommends you merge your resources into one... Images

Re: Wicket merchandise take 2

2008-08-26 Thread Yiannis Mavroukakis
Aaah thanks..too bad I ordered the tee's first I could have done without the extra $5 shipping charge :P Nino Saturnino Martinez Vazquez Wael wrote: The bib are back up.. Yiannis Mavroukakis wrote: Nice, two t-shirts winging themselves my way already :-) What happened to the bib by the way,

Re: Overriding panel markup

2008-08-26 Thread shetc
Excellent! Thanks for your help. -- View this message in context: http://www.nabble.com/Overriding-panel-markup-tp14642196p19161133.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe,

Re: Wicket resources (css, js and images)?

2008-08-26 Thread Martijn Dashorst
Probably something for 1.5 (with WANG–Wicket Ajax Next Generation–being based on YUI) Martijn On Tue, Aug 26, 2008 at 2:25 PM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: I've been hearing some rants on how merging resources can up the performance, should wicket be able todo

Re: Wicket merchandise take 2

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
too impatient:) I cant even delay it or merge orders:( Yiannis Mavroukakis wrote: Aaah thanks..too bad I ordered the tee's first I could have done without the extra $5 shipping charge :P Nino Saturnino Martinez Vazquez Wael wrote: The bib are back up.. Yiannis Mavroukakis wrote: Nice, two

Re: Wicket resources (css, js and images)?

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
YUP, I wrote something about a cache technique on my blog, http://ninomartinez.wordpress.com/2008/08/25/java-caching/ Maybe something could be taken from that and generalized? Im thinking on the part where you automatically add a keyword parameter (cache) to the url.. UMMM NG always reminds

Re: Implement LabeledLink and ImageLink components - what is the most elegant way?

2008-08-26 Thread pixologe
Thanks for your opinion on this... I think this is a similar approach to what I had in mind with the panel. What I do not like about those Panel solutions is that the link has to be wrapped and thus in itself is not a subclass of Link anymore. I think a really elegant solution should inherit from

Re: Implement LabeledLink and ImageLink components - what is the most elegant way?

2008-08-26 Thread pixologe
Thanks for the hint... I did look into the source code and could figure out the onComponentTagBody trick, too... replacing this with text is one thing... but wrapping other components would not be as easily done (as far as I am able to grasp this - correct me if I am wrong) - that's why I brought

Re: Wicket resources (css, js and images)?

2008-08-26 Thread Michael Sparer
yepp, but that's server-side caching isn't it? stefan wrote some interesting blog entries about merging resources and interface speed-up in general on http://talk-on-tech.blogspot.com/2008/08/wicket-interface-speed-up.html ... an RFE will follow after the last post of the series; might be a good

Re: Wicket merchandise take 2

2008-08-26 Thread Johan Compagner
is it also possible to have the letters on the back and the logo on the front (or visa versa)? i think i would like to have to logo on the back and the letters on the front. johan On Tue, Aug 26, 2008 at 3:01 PM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: too impatient:)

Change style of TreeNode

2008-08-26 Thread Kai Schubert-Altmann
Hi everybody, I have some question regarding my existing wicket tree: 1. How can I change the style or css class of one or more TreeNodes? 2. How can I specify custom icons for some nodes? 3. How can i change the name, that will be shown in the tree, without changing the name of the userObject?

IClusterable -- When should it be used?

2008-08-26 Thread shetc
Some of the Wicket examples have classes that implement the IClusterable interface. Could the experts offer some guidelines as to when this interface should be used? Thanks! -- View this message in context: http://www.nabble.com/IClusterableWhen-should-it-be-used--tp19163261p19163261.html

Re: IClusterable -- When should it be used?

2008-08-26 Thread Johan Compagner
wicket uses it as a tagging interface that it is clusterable/serializeable this is used in Terracotta for example to know what objects they can cluster johan On Tue, Aug 26, 2008 at 4:34 PM, shetc [EMAIL PROTECTED] wrote: Some of the Wicket examples have classes that implement the

Mounting parameters on homepage

2008-08-26 Thread Jörn Zaefferer
Hi, I have a simple search form on my homepage and would like to mount the search parameter, eg. to have host/?term=foo instead of host/?x=faniwfani35gfsge353 (when using CryptedUrlWebRequestCodingStrategy). I can't figure out a way to configure the strategy used to mount the homepage. This

Link inside DataTable - PropertyColumn with Link

2008-08-26 Thread nanotech
Hi All, I looked at the following http://cwiki.apache.org/WICKET/adding-links-in-a-defaultdatatable.html to create a column with hyperlinks. Also added the following for the markup public IResourceStream getMarkupResourceStream(MarkupContainer container, Class

Re: My Wicket + Hibernate project- Transaction solutions? Java EE w/ Wicket?

2008-08-26 Thread James Perry
On Sun, Aug 24, 2008 at 4:11 AM, jpswain [EMAIL PROTECTED] wrote: I'm just curious what everyone is using for transaction management. I have been working with Wicket for a while now (and loving it) on a pet project that also uses Hibernate and Guice. I'm realizing now that I might need/want

Wicket merchandise

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
I've gotten word from apache PRC, and the shop are closed. The lucky people that have ordered will recieve their merchandise as I cant stop it. I hope the discussion with PRC will end out to benefit the wicket community and make it so we again can get merchandise.. -- -Wicket for love Nino

Re: Wicket merchandise take 2

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
It could. But for now the shop are closed..:( Lets take it up if it open again. Johan Compagner wrote: is it also possible to have the letters on the back and the logo on the front (or visa versa)? i think i would like to have to logo on the back and the letters on the front. johan On Tue,

Re: Wicket resources (css, js and images)?

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
Michael Sparer wrote: yepp, but that's server-side caching isn't it? Yup. stefan wrote some interesting blog entries about merging resources and interface speed-up in general on http://talk-on-tech.blogspot.com/2008/08/wicket-interface-speed-up.html ... I read it:) And it compliments

Re: Wicket merchandise

2008-08-26 Thread Yiannis Mavroukakis
Any particular reason why? Nino Saturnino Martinez Vazquez Wael wrote: I've gotten word from apache PRC, and the shop are closed. The lucky people that have ordered will recieve their merchandise as I cant stop it. I hope the discussion with PRC will end out to benefit the wicket community

Re: Wicket Image - Java Image

2008-08-26 Thread insom
Confused? Who, me? Okay, I confess, graphics are a gaping hole in my Java knowledge. Here's the working solution I came up with in the end, using a BufferedDynamicImageResource. I'll have to do some more figuring to see how to do it with a RenderedDynamicImageResource.

Re: Wicket resources (css, js and images)?

2008-08-26 Thread Scott Swank
Has jquery been considered for WANG, or am I coming into this conversation late? Scott On Tue, Aug 26, 2008 at 5:51 AM, Martijn Dashorst [EMAIL PROTECTED] wrote: Probably something for 1.5 (with WANG–Wicket Ajax Next Generation–being based on YUI) Martijn On Tue, Aug 26, 2008 at 2:25 PM,

Re: Calls to MarkupCache#putIntoCache does not use the key provided by MarkupCacheKeyProvider

2008-08-26 Thread Igor Vaynberg
i would just let the base cms page implement imarkupcachekeyprovider -igor On Tue, Aug 26, 2008 at 2:28 AM, Edvin Syse [EMAIL PROTECTED] wrote: Hi, I have a virtualhosted CMS written in Wicket 1.3 where some of the pages are loaded from the database. This is done using a custom

Re: Wicket merchandise

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
Nope, I guess it's about donations back to ASF (I guess I might have been unclear about it). In my reply I've sumarized what we agreed on here. Non profit, exeding money goes to supply comitters / patchers with merchandise and if none of the previous then ASF.. Although I think they might want

Re: Mounting parameters on homepage

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
Jörn Zaefferer wrote: Hi, I have a simple search form on my homepage and would like to mount the search parameter, eg. to have host/?term=foo instead of host/?x=faniwfani35gfsge353 (when using CryptedUrlWebRequestCodingStrategy). I can't figure out a way to configure the strategy used to

Re: Wicket resources (css, js and images)?

2008-08-26 Thread Jonathan Locke
is WANG going to be CHUNG compatible? Martijn Dashorst wrote: Probably something for 1.5 (with WANG–Wicket Ajax Next Generation–being based on YUI) Martijn On Tue, Aug 26, 2008 at 2:25 PM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: I've been hearing some rants on

Re: Wicket resources (css, js and images)?

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
CHEECH and CHUNG? Or just Korean Clear? Jonathan Locke wrote: is WANG going to be CHUNG compatible? Martijn Dashorst wrote: Probably something for 1.5 (with WANG–Wicket Ajax Next Generation–being based on YUI) Martijn On Tue, Aug 26, 2008 at 2:25 PM, Nino Saturnino Martinez Vazquez Wael

Re: My Wicket + Hibernate project- Transaction solutions? Java EE w/ Wicket?

2008-08-26 Thread Maarten Bosteels
On Tue, Aug 26, 2008 at 5:17 PM, James Perry [EMAIL PROTECTED]wrote: On Sun, Aug 24, 2008 at 4:11 AM, jpswain [EMAIL PROTECTED] wrote: I'm just curious what everyone is using for transaction management. I have been working with Wicket for a while now (and loving it) on a pet project

getForm() on a component inside 2nd level Fragment returns null?

2008-08-26 Thread Ritesh Trivedi
Hi, I have a Page which contains Fragment (A) and which in turn contains Fragment (B). Fragment B has a button. In Fragment B class if I do button.getForm() I get null. I also tried button.getParent().getParent() which should be a form - but it returns null as well. Here is the markup body

Re: Wicket resources (css, js and images)?

2008-08-26 Thread Matej Knopp
Hi, I haven't announced yet publicly but for some time I was working on Ajax implementation for 1.5. The work is available in /repos/asf/wicket/sandbox/knopp/experimental/wicket I will put together a wiki page when I have some free time. I have of course considered jquery. I gave it a proper

Re: Mounting parameters on homepage

2008-08-26 Thread Ritesh Trivedi
I dont think you need to explicitly mount a home page to /. Your application has the home page reference and application mounts that page to /. What you probably need is create a SearchPage.java, have it mounted as mixed param coding strategy and let SearchPage provide PageParameter constructor

Re: wicket frame and tree

2008-08-26 Thread Matej Knopp
Generally it's not a good idea to use frames for things like this. Especially with a stateful framework like wicket. Are you absolutely necessary you need frames? Why? -Matej On Tue, Aug 26, 2008 at 3:45 PM, fish3934 [EMAIL PROTECTED] wrote: Hi, I have a web application that required to use

DefaultDataTable and tfoot

2008-08-26 Thread Uwe Schäfer
hi i got empty footers from DefaultDataTable the validators (tidy et al) complain about. is there a simple way to get them out if empty ? cu uwe - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

[announce] Openlayers contrib upgraded to 1.4-SNAPSHOT

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
So there it are for your pleasure.. I've smoke tested it manually, and it seems to be working. However it seems there are a problem with the map provider, it's there on http://openlayers.org/ too. But i've previously experienced it to be unstable. Feel free to come with propositions on

Re: Change style of TreeNode

2008-08-26 Thread Edvin Syse
Kai Schubert-Altmann skrev: Hi everybody, I have some question regarding my existing wicket tree: 1. How can I change the style or css class of one or more TreeNodes? If you override the populateTreeItem() method, you can add an AbstractBehaviour to the item and override the onComponentTag

Re: Wicket resources (css, js and images)?

2008-08-26 Thread Igor Vaynberg
+1 for YUI -igor On Tue, Aug 26, 2008 at 10:57 AM, Matej Knopp [EMAIL PROTECTED] wrote: Hi, I haven't announced yet publicly but for some time I was working on Ajax implementation for 1.5. The work is available in /repos/asf/wicket/sandbox/knopp/experimental/wicket I will put together a

Re: getForm() on a component inside 2nd level Fragment returns null?

2008-08-26 Thread Edvin Syse
Please post the Java-code. -- Edvin Ritesh Trivedi skrev: Hi, I have a Page which contains Fragment (A) and which in turn contains Fragment (B). Fragment B has a button. In Fragment B class if I do button.getForm() I get null. I also tried button.getParent().getParent() which should be a form

[announce] Wicket Contrib input events upgraded to 1.4 snapshot

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
For your pleasure:) Now you can enjoy hot keys easy again :) Smoke tested with FF2 and safari on mac.. I correctly some spelling error in the package name, so it's changed to groupIdorg.wicket-stuff/groupId -- groupIdorg.wicketstuff/groupId rest remains the same.. -- -Wicket for love

Re: Localization issue

2008-08-26 Thread Łukasz Lipka
Hi, depends on browser you use, I think for IE you have to start a new Broswer, for Firefox you can try this: getSession().invalidate(); and than set up new Locale Best regards Łukasz Lipka 2008/8/26 btakacs [EMAIL PROTECTED] Hi I have a page with a TabPanel with a ListView of

WANG–Wicket Ajax Next Genera tion–being based on YUI (MD)

2008-08-26 Thread jWeekend
Matej, What are the implications of the decision to base Wicket Ajax Next Generation on YUI in terms of choosing a Javascript library for future Wicket based web front ends? We too were tending towards jQuery, mainly because + code based on jQuery can be quite terse yet still easy to read and

Re: Wicket merchandise

2008-08-26 Thread James Carman
I would recommend just putting down that the money goes straight to the ASF. If the committers really want some merchandise for free, then I say we take up a collection via paypal or something and just buy it for them. On Tue, Aug 26, 2008 at 12:43 PM, Nino Saturnino Martinez Vazquez Wael

Re: Localization issue

2008-08-26 Thread James Carman
This isn't a browser setting. This is overriding the locale via code rather than using the browser default. This wiki page outlines all you need to know about i18n in Wicket: http://cwiki.apache.org/WICKET/i18n.html 2008/8/26 Łukasz Lipka [EMAIL PROTECTED]: Hi, depends on browser you use, I

Re: Localization issue

2008-08-26 Thread btakacs
Hi, All The question is: after getSession().setLocale(locale); running and successfully changing the locale (I checked in debug mode) when running setResponsePage(this.getPage()); why the locale changes does not apply to the components? They apply only after I click on a bookmarkable link.

Re: Localization issue

2008-08-26 Thread James Carman
Try setRedirect(true). The locale for the current request is probably already established. On Tue, Aug 26, 2008 at 3:56 PM, btakacs [EMAIL PROTECTED] wrote: Hi, All The question is: after getSession().setLocale(locale); running and successfully changing the locale (I checked in debug

Re: getForm() on a component inside 2nd level Fragment returns null?

2008-08-26 Thread Ritesh Trivedi
public class ViewCartPage { // Add feedback panel add(new FeedbackPanel(feedbackPanel, new ComponentFeedbackMessageFilter(ViewCartPage.this))); ShoppingCart cart = ShoppingCartWorkerEx.getShoppingCart(); int cartSize = cart.size(); if (cartSize == 0)

Re: IClusterable -- When should it be used?

2008-08-26 Thread shetc
I guess my real questions was: What objects in a Wicket application should be marked as clusterable? (Or did you already answer that? :confused: ) -- View this message in context: http://www.nabble.com/IClusterableWhen-should-it-be-used--tp19163261p19169507.html Sent from the Wicket - User

Re: WANG–Wicket Ajax Next Generation–being based on YUI (MD)

2008-08-26 Thread Matej Knopp
Hi, On Tue, Aug 26, 2008 at 9:24 PM, jWeekend [EMAIL PROTECTED] wrote: Matej, What are the implications of the decision to base Wicket Ajax Next Generation on YUI in terms of choosing a Javascript library for future Wicket based web front ends? actually, there really are none. The use of

Re: IClusterable -- When should it be used?

2008-08-26 Thread Johan Compagner
if you have objects that would be kept in the session, you have to use Serializable. at the moment you use that you can choose for IClusterable so that when you use terracotta it will be clustered johan On Tue, Aug 26, 2008 at 10:14 PM, shetc [EMAIL PROTECTED] wrote: I guess my real

Re: Wicket merchandise

2008-08-26 Thread Johan Compagner
i dont have to have anything for free! And i think that stuff should be able to sell just fine. So i guess the problem is that it says Apache on the shirt?? johan On Tue, Aug 26, 2008 at 9:24 PM, James Carman [EMAIL PROTECTED]wrote: I would recommend just putting down that the money goes

Re: IClusterable -- When should it be used?

2008-08-26 Thread Matej Knopp
Right now there really isn't any practical reason for having IClusterable at all. Even terracotta uses regular serialization to get pages over cluster. -Matej On Tue, Aug 26, 2008 at 10:26 PM, Johan Compagner [EMAIL PROTECTED] wrote: if you have objects that would be kept in the session, you

Re: IClusterable -- When should it be used?

2008-08-26 Thread Johan Compagner
both ways of doing it? i think there are 2 now right? the one that was made up first and now the one that is just the pagestore? On Tue, Aug 26, 2008 at 10:30 PM, Matej Knopp [EMAIL PROTECTED] wrote: Right now there really isn't any practical reason for having IClusterable at all. Even

Re: IClusterable -- When should it be used?

2008-08-26 Thread shetc
Ah, so it's Terracotta-specific. I'm working with WebSphere, which I presume won't take notice of the IClusterable hint. Thanks very much, Johan! -- View this message in context: http://www.nabble.com/IClusterableWhen-should-it-be-used--tp19163261p19169841.html Sent from the Wicket - User

Re: Wicket merchandise

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
James Carman wrote: I would recommend just putting down that the money goes straight to the ASF. If the committers really want some merchandise for free, then I say we take up a collection via paypal or something and just buy it for them. Well true, but it incurs more administration.. I

Re: getForm() on a component inside 2nd level Fragment returns null?

2008-08-26 Thread Edvin Syse
Your CartActionToolbar#markupProvider is infact your form, so you can do ((Form)markupProvider).setDefaultButton(checkoutButton), or you could make the cartForm a private field in ViewCartPage and just access it with cartForm.setDefaultButton(checkoutButton). For the first approach you'll

Re: Wicket merchandise

2008-08-26 Thread Nino Saturnino Martinez Vazquez Wael
Johan Compagner wrote: i dont have to have anything for free! No, but I think it would be nice... And i think that stuff should be able to sell just fine. So i guess the problem is that it says Apache on the shirt?? For now it are (I think also the logo it self are trademarked), but

Re: Wicket resources (css, js and images)?

2008-08-26 Thread richardwilko
Hi, A few months back I started work on a slightly different method of adding resources to a page, where, it works out what resources are added on the page, combines them together with the yui javascript compressor, caches the result, and serves it. Unfortunately I haven't had any time to work

Re: datepicker visibility problem

2008-08-26 Thread Julien Gaucher
ok, i tried, and in fact, i had a bad understanding of my probleme. in fact, i use ajax to refresh the datepicker, and it doesnt refresh the datepicker binded to the datetextfield. i could of course refresh all the form, but it's a little overkill. (and my form is pretty heavy) i can't see how

Re: WANG–Wicket Ajax Next Generation–bei ng based on YUI (MD)

2008-08-26 Thread Peter Ertl
+1 for including support for cometd in wicket core I expect server side push the next great thing in web development :) my 2 pct Am 26.08.2008 um 22:19 schrieb Matej Knopp: Hi, On Tue, Aug 26, 2008 at 9:24 PM, jWeekend [EMAIL PROTECTED] wrote: Matej, What are the implications of the

Re: Localization issue

2008-08-26 Thread Daniel Stoch
Hi, But what exactly not work? I'm using a Link with onClick() code: getSession().setLocale(locale); to swicth current locale and everything works ok. All page components are localized correctly. I think this setResponsePage(this.getPage()); call in your code is not necessary:

Re: My Wicket + Hibernate project- Transaction solutions? Java EE w/ Wicket?

2008-08-26 Thread David Blevins
jpswain wrote: I'm just curious what everyone is using for transaction management. I have been working with Wicket for a while now (and loving it) on a pet project that also uses Hibernate and Guice. I'm realizing now that I might need/want transactional support for a couple parts of

Re: Wicket merchandise

2008-08-26 Thread James Carman
It might help to have someone on the Wicket PMC contact the PRC folks as well. That way they know this stuff is going on with the consent of someone in house. On Tue, Aug 26, 2008 at 4:44 PM, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Johan Compagner wrote: i dont have to

Re: Wicket merchandise

2008-08-26 Thread Martijn Dashorst
Just done that Martijn On Tue, Aug 26, 2008 at 11:19 PM, James Carman [EMAIL PROTECTED] wrote: It might help to have someone on the Wicket PMC contact the PRC folks as well. That way they know this stuff is going on with the consent of someone in house. On Tue, Aug 26, 2008 at 4:44 PM,

  1   2   >