OrderByBorder Markup

2011-01-03 Thread Peter Diefenthaeler
Hi, I'm using the OrderByBorder feature and it works well for th rows without stylesheet classes. Unfortunately it fails if the th already has a stylesheet class: th class=MandateEntityTypeField wicket:id=orderByEntitytype wicket:message key=entitytype / /th Wicket replaces the

Re: OrderByBorder Markup

2011-01-03 Thread Martin Grigorov
public static class CssModifier extends AttributeModifier This seems to be the problem. File a ticket in Jira. With quickstart will be easier for us to reproduce it and fix it faster ;-) In the meantime you can workaround the problem by calling: orderByBorder.add(new AttributeAppender(class,

Re: [ANNOUNCE] Wicket 1.4.15 released

2011-01-03 Thread Daniel Peters
On 27.12.2010 19:15, Daan van Etten wrote: One thing I noticed: the release tag is not (yet?) created in SVN. I just noticed that too. http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.15/ does not exist. regards, Daniel

Re: Display component feedback message once: safety net renders them always before

2011-01-03 Thread Pedro Santos
Hi Joseph, I didn't understood your solution If have an page with 3 form components and 5 feedback panels: 1 for each form component, 1 for the form, and the last one for the page. And I want feedback messages address to form components to be presented only by the correspondent feedback panel. I

Re: Display component feedback message once: safety net renders them always before

2011-01-03 Thread Pedro Santos
You are testing the behaviors types of reporter, but if two components with an FeedbackHighlightBehavior report an feedback you break the functionality A - no message should be rendered twice On Wed, Dec 29, 2010 at 12:05 PM, joseph.pachod j...@thomas-daily.de wrote: Hi Pedro Santos I hadn't

Re: Problem AjaxFormChoiceComponentUpdatingBehavior IE7

2011-01-03 Thread William.Bacchi
Vladimir V. Bychkov wrote: Hello. Sorry my bad english. Component RadioChoice with AjaxFormChoiceComponentUpdatingBehavior has different behavior in Firefox and IE7. Source: Adding form action=/form around RadioGroup in the html file works for me. -- View this message in context:

Re: [ANNOUNCE] Wicket 1.4.15 released

2011-01-03 Thread Jeremy Thomerson
On Mon, Jan 3, 2011 at 4:48 AM, Daniel Peters daniel.pet...@idealo.de wrote: On 27.12.2010 19:15, Daan van Etten wrote: One thing I noticed: the release tag is not (yet?) created in SVN. I just noticed that too. http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.15/ does not exist.

Problems with continueToOriginalDestination?

2011-01-03 Thread Daniel Peters
Hallo, i just wanted to ask if anybody else has problems with Component.continueToOriginalDestination() at the moment... For me it only works as expected until 1.4.12 , but all later versions (.13 to .15) return false and the following code just sends the user to the application homepage: if

Re: Problems with continueToOriginalDestination?

2011-01-03 Thread Jeremy Thomerson
On Mon, Jan 3, 2011 at 11:24 AM, Daniel Peters daniel.pet...@idealo.de wrote: Hallo, i just wanted to ask if anybody else has problems with Component.continueToOriginalDestination() at the moment... For me it only works as expected until 1.4.12 , but all later versions (.13 to .15) return

quick page model question

2011-01-03 Thread gnugrf
how do you get the page model to refresh when a user presses reload or F5? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/quick-page-model-question-tp3172678p3172678.html Sent from the Users forum mailing list archive at Nabble.com.

Re: quick page model question

2011-01-03 Thread Martin Makundi
You can refresh it in your loadabledetachable model or onbeforerender.. there are some alternatives. ** Martin 2011/1/3 gnugrf gnu...@sdf.lonestar.org: how do you get the page model to refresh when a user presses reload or F5? -- View this message in context:

Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-03 Thread Roman Ilin
Hi *, in wicket 1.4.15 spring 3.0.5 hibernate 3.6 application if defined springs PersistenceExceptionTranslationPostProcessor bean I get Unserializable exceptions in different spring classes (PersistenceExceptionTranslationInterceptor, ChainedPersistenceExceptionTranslator, ...) After looking

Re: quick page model question

2011-01-03 Thread gnugrf
I'm pretty much a noob, even though I've been slowly working on a project for about a year so bear with me. I've read understanding models a couple dozen times already and lifecycle, requestcycle, etc. and did a fair amount of slogging through the mailing list for old posts about page resfresh

Re: quick page model question

2011-01-03 Thread Jeremy Thomerson
On Mon, Jan 3, 2011 at 5:00 PM, gnugrf gnu...@sdf.lonestar.org wrote: I'm pretty much a noob, even though I've been slowly working on a project for about a year so bear with me. I've read understanding models a couple dozen times already and lifecycle, requestcycle, etc. and did a fair amount

Re: Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-03 Thread Jeremy Thomerson
On Mon, Jan 3, 2011 at 4:50 PM, Roman Ilin roman.i...@gmail.com wrote: Hi *, in wicket 1.4.15 spring 3.0.5 hibernate 3.6 application if defined springs PersistenceExceptionTranslationPostProcessor bean I get Unserializable exceptions in different spring classes

Re: Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-03 Thread Roman Ilin
Sorry, I haven't said that I get unserializable exceptions in Provider for my table - list. public class UserDataProvider extends CustomerAwareSortableDataProviderUser { private final User findByExample; @SpringBean private UserDao userDao; public