Re: AjaxEditableLabel default type

2008-04-06 Thread Johan Compagner
Thats how all formcomponents work. If you dont set a type and it cant resolve it themselfs or the type is resolved to a string then convertValue() is used and not the converter. If you want a converter to be called on a string you have to set the type yourself. On 4/5/08, Jan Kriesten [EMAIL

Add attribute to specific cell in DataTable

2008-04-06 Thread Eyal Golan
Hello all, I have a DataTable. I want to add to a specific table an attribute using AttributeAppender. I override the newCellItem method and add there this appender. I don't want to add this to ALL cells, but only to those that their Header is Description. I tried getModel and when debugging I

RadioButton inside DataTable

2008-04-06 Thread Sathish Gopal
Hi all, I'm trying to build DataTable using the Wickets DefaultDataTable component. One of the column in the list is a RadioButton component, which is used to select a particular row. I'm using wicket fragment feature. My html looks like this... div table cellpadding=0

RE: RadioButton inside DataTable

2008-04-06 Thread Hoover, William
see http://cwiki.apache.org/WICKET/using-radiogroups.html -Original Message- From: Sathish Gopal [mailto:[EMAIL PROTECTED] Sent: Sunday, April 06, 2008 6:07 AM To: users@wicket.apache.org Subject: RadioButton inside DataTable Hi all, I'm trying to build DataTable using the Wickets

Using twice wicket:message in img element

2008-04-06 Thread Martin Grigorov
Hi, I want to internationalize both 'alt' and 'title' attributes of img element: img src=some.gif wicket:message=alt:aPanel.buttons.equals.alt wicket:message=title:aPanel.buttons.equals.title/ But Wicket complains with that: Caused by: java.text.ParseException: Same attribute found twice:

Re: Using twice wicket:message in img element

2008-04-06 Thread Martijn Dashorst
Just like wicket:link, wicket:message is a convenience. In this case, you probably should just make it a ContextImage and add the appropriate attribute modifiers to it. That said, you can file a RFE in jira for this. I think it is a limitation that should be lifted. However, you'll be quicker to

Indicating on another componanet

2008-04-06 Thread Rami Sass
Hi, I have a button click which has heavy (10-20+ seconds) computation before replacing a panel with a new panel containing the results of the computation. In the waiting time i would like to have an indication where the old panel resides on the screen (I wouldn't mind blocking the entire page

Re: Using twice wicket:message in img element

2008-04-06 Thread Martin Grigorov
Thanks! It's a comma. I'll update http://cwiki.apache.org/WICKET/wickets-xhtml-tags.html with this usecase. Regards Martin On Sun, 2008-04-06 at 04:50 -0700, Igor Vaynberg wrote: img src=some.gif wicket:message=alt:aPanel.buttons.equals.alt,title:aPanel.buttons.equals.title/ cant remember

Re: Using twice wicket:message in img element

2008-04-06 Thread Igor Vaynberg
img src=some.gif wicket:message=alt:aPanel.buttons.equals.alt,title:aPanel.buttons.equals.title/ cant remember if its a comma or semicolon though... -igor On Sun, Apr 6, 2008 at 4:19 AM, Martin Grigorov [EMAIL PROTECTED] wrote: Hi, I want to internationalize both 'alt' and 'title'

Re: Using twice wicket:message in img element

2008-04-06 Thread Igor Vaynberg
super, thanks -igor On Sun, Apr 6, 2008 at 4:56 AM, Martin Grigorov [EMAIL PROTECTED] wrote: Thanks! It's a comma. I'll update http://cwiki.apache.org/WICKET/wickets-xhtml-tags.html with this usecase. Regards Martin On Sun, 2008-04-06 at 04:50 -0700, Igor Vaynberg wrote: img

Re: Indicating on another componanet

2008-04-06 Thread Martijn Dashorst
See Indication* components from extensions, and the IIndicatorAware interface. For blocking the screen, see the Veil from wicketstuff minis Martijn On 4/6/08, Rami Sass [EMAIL PROTECTED] wrote: Hi, I have a button click which has heavy (10-20+ seconds) computation before replacing a

RE: RadioButton inside DataTable

2008-04-06 Thread Sathish Gopal
Hi, I was actually looking for integrating RadioButton with DefaultDataTable component available in Wicket. My requirement is, i need to show a row of data's with one column being a RadioButton. I use DataTable component for showing list of Data's. The number of columns is known only at

Re: warning: [deprecation] AuthenticatedWebSession(AuthenticatedWebApplication,Request)

2008-04-06 Thread rosen jiang
Hi all, I encounter the same problem, how to resolve it? thx! -rosen jiang Johnnie wrote: Hi, I'm using Wicket 1.3.2, had a piece of code that read like this: public MySession(final AuthenticatedWebApplication application, final Request request) {

Re: warning: [deprecation] AuthenticatedWebSession(AuthenticatedWebApplication,Request)

2008-04-06 Thread Maurice Marrink
AuthenticatedWebApplication used the deprecated constructor, this should be fixed in wicket 1.3.3 see https://issues.apache.org/jira/browse/WICKET-1423 Maurice On Sun, Apr 6, 2008 at 3:55 PM, rosen jiang [EMAIL PROTECTED] wrote: Hi all, I encounter the same problem, how to resolve it?

Re: Indicating on another componanet

2008-04-06 Thread Timo Rantalaiho
On Sun, 06 Apr 2008, Rami Sass wrote: I have a button click which has heavy (10-20+ seconds) computation before replacing a panel with a new panel containing the results of the computation. In the waiting time i would like to have an indication where the old panel resides on the screen (I

Re: Have any DynamicByteArrayResource sample?

2008-04-06 Thread Nino Saturnino Martinez Vazquez Wael
take a look at DynamicImageResource.. It should give some hints. rosen jiang wrote: Hi all, I want use DynamicByteArrayResource class download Excel(ByteArray Resource not File) from jexcelapi. Does DynamicByteArrayResource class fit for me? thx! best regards, osen jiang -- -Wicket

Have any DynamicByteArrayResource sample?

2008-04-06 Thread rosen jiang
Hi all, I want use DynamicByteArrayResource class download Excel(ByteArray Resource not File) from jexcelapi. Does DynamicByteArrayResource class fit for me? thx! best regards, osen jiang -- View this message in context:

Promotion

2008-04-06 Thread Cristi Manole
Hi, Please excuse me for taking 2 minutes of your time, but I would like to promote a website developed with Wicket: www.sssmoking.com It's a very simple site, developed in a few hours, so not much to say about it... it's purpose is to keep track of your daily smoking. And a lot more will be

Re: Promotion

2008-04-06 Thread Martin Grigorov
Congrats Cristi, I like the styling of the sign in modal window! Really cool (self-documenting) ids ;-) div id=mainshit On Sun, 2008-04-06 at 21:03 +0300, Cristi Manole wrote: Hi, Please excuse me for taking 2 minutes of your time, but I would like to promote a website developed with

Re: java.io.StreamCorruptedException: invalid type code: 29

2008-04-06 Thread Matej Knopp
On Wed, Apr 2, 2008 at 10:03 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: SPEED! Awesome. I don't give a rats ass about the unit tests performance. Is it really worth having different environment for running unit tests than the the environment the application runs within? -Matej On 4/2/08,

Re: java.io.StreamCorruptedException: invalid type code: 29

2008-04-06 Thread Johan Compagner
Dont know if the stream corrupt has the same root problem as the stackoverflow But that is just fixed. johan On Sat, Mar 29, 2008 at 11:22 PM, Daniel Wu [EMAIL PROTECTED] wrote: I've updated my wicket application to Wicket 1.3.2, but now, when I try to switch between my application tabs (my

[Amsterdam meetup] Program for tuesday

2008-04-06 Thread Martijn Dashorst
I would like to propose the following program for our get-to-gether coming tuesday in Amsterdam: We have the venue starting at 3pm, until 9pm (but that can be extended a bit) 15:00 - 16:00 Hackathon/ask a committer 16:00 - 16:30 Java monitoring with JaMon - Lars Vonk 16:30 - 16:45 Wicket 2.0 -

Re: Picnik components

2008-04-06 Thread RĂ¼diger Schulz
Hello everbody, I finally had the time to finish a first beta release of the picnik components, boldly named wicketstuff-picnik (I will apply for wicketstuff access soon). You can download the files from my blog for now:

Re: Strange behaviour with autocomplete

2008-04-06 Thread David Leangen
Yep, that fix works for me. Thanks! On Fri, 2008-04-04 at 21:00 +0200, Erik van Oosten wrote: This may be related to the bug I reported in https://issues.apache.org/jira/browse/WICKET-1355. Maybe the attached fix works for you. Regards, Erik. -- Erik van Oosten

Re: Question regarding navigation with the browser's back button

2008-04-06 Thread Damien Hollis
Another option - this might be a better first line of defence. Perhaps we look at implementing the other solution if the problem still exists. On Fri, Nov 9, 2007 at 2:42 AM, Christian Alejandro Marquez Grabia [EMAIL PROTECTED] wrote: Well...after trying on different things, what I did was