Re: [Wicket-user] Regarding Wicket Run-time exceptions?

2007-07-27 Thread Ayodeji Aladejebi
well that must be a JExcel API improper use problem, you can read up well on JExcel to see if you are properly using the API but if cell.getType is not returning the proper type, then you need to be sure that you are calling on the right cell. am not even a pro with the JExcel API, i just learnt

Re: [Wicket-user] Strange FeedbackPanel behaviour

2007-07-27 Thread Igor Vaynberg
are you running it on a cluster of live servers? or just one? -igor On 7/27/07, Mike Cripps [EMAIL PROTECTED] wrote: Hi all, On my development box, the following code works fine (I'm using a Wizard): productCodeField.add(new AbstractValidator() { @Override protected

[Wicket-user] Image with AjaxSelfUpdatingTimerBehavior

2007-07-27 Thread Gohan
I wonder how I rerender an Image using the AjaxSelfUpdatingTimerBehavior? I've created an image like: Image image = new Image(imgId, new DynamicImageResource() { @Override protected byte[] getImageData() { // Get the byte data

Re: [Wicket-user] Wicket User at sourceforge is moving!

2007-07-27 Thread landtuna
landtuna wrote: Martijn Dashorst wrote: Subscribe now: send a message to [EMAIL PROTECTED] This list will self destruct in 10 minutes. While the subscribe link at http://wicket.apache.org/community.html has been changed to the apache list, the Archives link still points to Nabble.

Re: [Wicket-user] Image with AjaxSelfUpdatingTimerBehavior

2007-07-27 Thread Igor Vaynberg
the url never changes, so the browser uses its cache use NonCachingImage -igor On 7/27/07, Gohan [EMAIL PROTECTED] wrote: I wonder how I rerender an Image using the AjaxSelfUpdatingTimerBehavior? I've created an image like: Image image = new Image(imgId, new DynamicImageResource() {

Re: [Wicket-user] Removing Markup Component (From HTML) using Java

2007-07-27 Thread Ryan Holmes
If you want that text box to have dynamic behavior (e.g. changing its visibility), you have to make it a Wicket component. Otherwise, Wicket cannot alter it in any way. If you really don't want to make that text box a Wicket component (for whatever reason), you could always use JavaScript.

[Wicket-user] Strange FeedbackPanel behaviour

2007-07-27 Thread Mike Cripps
Hi all, On my development box, the following code works fine (I'm using a Wizard): productCodeField.add(new AbstractValidator() { @Override protected void onValidate(IValidatable validatable) { LOG.info(Validating +validatable); if

[Wicket-user] Is it possible to update a single row in a table?

2007-07-27 Thread salmas
I have to mimic an application which was written using javascript/XSLT in which changes in a table affecting single rows are managed by updating only the affected row(s). I believe that this is done by surrounding the row in a span. Is this possible in wicket? I am using a Datatable. Thanks --

Re: [Wicket-user] Is it possible to update a single row in a table?

2007-07-27 Thread Igor Vaynberg
On 7/27/07, salmas [EMAIL PROTECTED] wrote: I have to mimic an application which was written using javascript/XSLT in which changes in a table affecting single rows are managed by updating only the affected row(s). I believe that this is done by surrounding the row in a span. Is this

Re: [Wicket-user] Is it possible to update a single row in a table?

2007-07-27 Thread Igor Vaynberg
On 7/27/07, salmas [EMAIL PROTECTED] wrote: igor.vaynberg wrote: On 7/27/07, salmas [EMAIL PROTECTED] wrote: Thanks Igor, How could I do this? thats easy, you start by searching this list for datatable ajax row which will find this:

[Wicket-user] Wicket SVN has moved!

2007-07-27 Thread Martijn Dashorst
Wicket's subversion repository has been moved to reflect our status as a top level project within the Apache Software Foundation. In order to keep your sources, you should do a switch of your local copy: For non-committers: svn switch --relocate http://svn.apache.org/repos/asf/wicket/trunk

Re: [Wicket-user] Wicket SVN has moved!

2007-07-27 Thread Gwyn Evans
On Friday, July 27, 2007, 7:13:43 PM, Martijn [EMAIL PROTECTED] wrote: In order to keep your sources, you should do a switch of your local copy: For non-committers: svn switch --relocate http://svn.apache.org/repos/asf/wicket/trunk For committers: svn switch --relocate

Re: [Wicket-user] Is it possible to update a single row in a table?

2007-07-27 Thread Igor Vaynberg
you need 1.3beta2 of both -igor On 7/27/07, salmas [EMAIL PROTECTED] wrote: Igor, do I need the latest code for both wicket and extensions or just extensions? igor.vaynberg wrote: On 7/27/07, salmas [EMAIL PROTECTED] wrote: igor.vaynberg wrote: On 7/27/07, salmas [EMAIL

Re: [Wicket-user] Is it possible to update a single row in a table?

2007-07-27 Thread salmas
Igor, do I need the latest code for both wicket and extensions or just extensions? igor.vaynberg wrote: On 7/27/07, salmas [EMAIL PROTECTED] wrote: igor.vaynberg wrote: On 7/27/07, salmas [EMAIL PROTECTED] wrote: Thanks Igor, How could I do this? thats easy, you start by

Re: [Wicket-user] Is it possible to update a single row in a table?

2007-07-27 Thread salmas
I have the exact same issue as the poster in the threads you sent. When I add the repeater item to the AjaxTarget I get java.lang.IllegalArgumentException: markupId cannot be empty It works if I add the entire table to the target. It looks like you changed things to fix this? I am using wicket

Re: [Wicket-user] Wicket SVN has moved!

2007-07-27 Thread Upayavira
Martijn Dashorst wrote: Wicket's subversion repository has been moved to reflect our status as a top level project within the Apache Software Foundation. In order to keep your sources, you should do a switch of your local copy: For non-committers: svn switch --relocate

Re: [Wicket-user] How to get HTML source code from a wicket page

2007-07-27 Thread Tremelune
Great, thanks. This is pretty much all set. http://issues.apache.org/jira/browse/WICKET-795 Eelco Hillenius wrote: http://issues.apache.org/jira/browse/WICKET then look for a way to register. Eelco -- View this message in context:

[Wicket-user] Setting date format with the DateTimeField component

2007-07-27 Thread Mark van Leeuwen
Hi all, How can I set the date format with the DateTimeField? Looking at the code, the format appears to be set in DateTimeField.init() with the line: add(dateField = DateTextField.forShortStyle(date, new PropertyModel(this, date))); and there seems no simple way to override this behaviour. It

Re: [Wicket-user] Setting date format with the DateTimeField component

2007-07-27 Thread Gerolf Seitz
take a look at the DateTextField#forDatePattern(...) methods hth, gerolf On 7/28/07, Mark van Leeuwen [EMAIL PROTECTED] wrote: Hi all, How can I set the date format with the DateTimeField? Looking at the code, the format appears to be set in DateTimeField.init() with the line: