Re: Wrapping a FormComponent with a Border

2019-09-03 Thread Tom Götz
voids code changes as far as possible in existing client applications (and we have _several_ of those) ... Any chance you could share some parts of your custom code? Tom > Gesendet: Dienstag, 03. September 2019 um 12:19 Uhr > Von: "Bas Gooren" > An: users@wicket.apache.o

Re: Wrapping a FormComponent with a Border

2019-09-03 Thread Tom Götz
ache.org" > Betreff: Re: Wrapping a FormComponent with a Border > > On Tue, Sep 3, 2019 at 10:30 AM "Tom Götz" wrote: > > > Thanks Martin, I will look into that. But won't it be a problem that I > > will add the / TextField to the Border without having a

Re: Wrapping a FormComponent with a Border

2019-09-03 Thread Tom Götz
super(tag); > tag.setName("div"); // this modifies to > } > } > > I am not sure, but you may also need to expand the tag from OpenClose (i.e. > ) to open+close (i.e. ). See ComponentTag#isOpenClose() > and Component#afterRender(); > > On Tue, Sep 3

Aw: Re: Wrapping a FormComponent with a Border

2019-09-03 Thread Tom Götz
looking? Thanks in advance Tom > Gesendet: Montag, 02. September 2019 um 13:57 Uhr > Von: "Tom Götz" > An: users@wicket.apache.org > Betreff: Re: Wrapping a FormComponent with a Border > > Thanks Martin, this is exactly what I had in mind. I already implemented 1)

Re: Wrapping a FormComponent with a Border

2019-09-02 Thread Tom Götz
n your custom one > override onComponentTag() (and onComponentTagBody() - most probably not). > > On Mon, Sep 2, 2019 at 2:05 PM "Tom Götz" wrote: > > > Let me try to explain what I want to achieve more precisely: > > > > - user adds a TextField to a page &

Re: Wrapping a FormComponent with a Border

2019-09-02 Thread Tom Götz
gt; > Am 02.09.2019 um 12:20 schrieb Ernesto Reinaldo Barreiro > > : > > > > Another possibility is to do this client side... > > > >> On Mon, Sep 2, 2019, 11:43 AM "Tom Götz" wrote: > >> > >> That would be great, thanks in advance! > >>

Re: Wrapping a FormComponent with a Border

2019-09-02 Thread Tom Götz
That would be great, thanks in advance! Tom > Gesendet: Montag, 02. September 2019 um 10:39 Uhr > Von: "Ernesto Reinaldo Barreiro" > An: users@wicket.apache.org > Betreff: Re: Wrapping a FormComponent with a Border > > Hi, > > On Mon, Sep 2, 2019 at 11:13

Aw: Wrapping a FormComponent with a Border

2019-09-02 Thread Tom Götz
02. September 2019 um 09:22 Uhr > Von: "Tom Götz" > An: users@wicket.apache.org > Betreff: Wrapping a FormComponent with a Border > > Hi there, > > I would like to automatically wrap a FormComponent with a Border whenever it > is added on a certain page. Let's say

Re: Wrapping a FormComponent with a Border

2019-09-02 Thread Tom Götz
match your use case? > > References > > 1- https://www.scribd.com/document/43719247/LondonWicket-FormsWithFlair > >> On Mon, Sep 2, 2019 at 10:22 AM Tom Götz wrote: >> >> Hi there, >> >> I would like to automatically wrap a FormComponent with a

Wrapping a FormComponent with a Border

2019-09-02 Thread Tom Götz
Hi there, I would like to automatically wrap a FormComponent with a Border whenever it is added on a certain page. Let's say, a TextField is added, then I'd like to replace it with Border and add that TextField to the Border. The Border itself contains other Wicket Components such as a Label

Re: Wicket tests with Spring Boot

2019-07-10 Thread Tom Götz
ementation. If you have a service level it's not > necessary to mock persistence, but enough to mock services and inject them > (if you use @Autowired annotation). > > Could you please give a bit more examples of what you're trying to test? > > >> On Wed, 10 J

Wicket tests with Spring Boot

2019-07-10 Thread Tom Götz
Hi there, we have a Spring Boot based webapp (Wicket 8.4 with wicket-spring-boot 2.1.6) and would like to create a base test class for our Wicket tests. For testing, we would like to mock the service and persistence layer (e.g. with Mockito). Is there a good example for that purpose? Cheers

Re: Replace session after user login

2018-04-24 Thread Tom Götz
l invalidatNow(). Note that this doesn't prevent the session > object from surviving, since it is still bound to the current thread. For > that you have to call ThreadContext#setSession(null). > > Have fun > Sven > > Am 23. April 2018 21:53:39 MESZ schrieb "Tom Götz" &l

Replace session after user login

2018-04-23 Thread Tom Götz
Hi there, one question concerning user login: what is the correct way of replacing the session after a successful user login? Calling org.apache.wicket.Session#replaceSession replaces the underlying web session. But what about the Wicket session itself? Will it also be replaced with a new

Wanted: example for Spring Security with wicket-auth-roles

2018-04-18 Thread Tom Götz
Hi! Does anyone have a working example for an integration of Spring Security and wicket-auth-roles? We currently use Wicket 7.9.0 and Spring Boot 2.x … We’d like to authenticate users via a login form (SignInPanel) and also use a „remember me“ cookie based authentication. Anyone? Cheers,

Re: Exception with Wicket 7.5.0 when FeedbackMessage is rendered

2017-12-08 Thread Tom Götz
Ok, that problem seemed to be related to the wicket-bootstrap library, which we also use. An upgrade of that dependency from 0.10.7 to 0.10.16 solved the problem. Cheers, Tom > On 08.12.2017, at 09:21, Tom Götz <tgo...@decoded.de> wrote: > > I have not tried, but I guess th

Re: Exception with Wicket 7.5.0 when FeedbackMessage is rendered

2017-12-08 Thread Tom Götz
experienced the same exception/behaviour … Tom > On 08.12.2017, at 09:06, Maxim Solodovnik <solomax...@gmail.com> wrote: > > Hello Tom, > > maybe you can create quickstart > http://wicket.apache.org/start/quickstart.html demonstrating this? > > On Fri, Dec 8

Exception with Wicket 7.5.0 when FeedbackMessage is rendered

2017-12-08 Thread Tom Götz
Hi there, starting with Wicket 7.5.0 we get a WicketRuntimeException whenever a FeedbackMessage is rendered in our global FeedbackPanel that we use in our pages. Everything is fine if there are not messages, but as soon as there is any message to be rendered, we get this:

Re: Which Check got clicked in CheckGroup with AjaxFormChoiceComponentUpdatingBehavior

2017-06-24 Thread Tom Götz
Simply check the modelObject’s value in you onUpdate method? Cheers, Tom > On 23.06.2017, at 13:47, ssamarin wrote: > > Hello, > > I have CheckGroup with Check's, and I need to have models for Check's > updated on click, on form submit it's too late. > > So far

Re: Wicket WebSockets problem with servlet context

2016-10-05 Thread Tom Götz
… so what I was trying to say (I’m not yet too deep into the websockets tech): isn’t it —in the described case— also necessary to configure the mount point of the WS endpoint? Tom > On 05.10.2016, at 17:42, Tom Götz <t...@decoded.de> wrote: > > BTW, I already trie

Re: Wicket WebSockets problem with servlet context

2016-10-05 Thread Tom Götz
0.2016, at 17:35, Tom Götz <t...@decoded.de> wrote: > > I created a JIRA for this: https://issues.apache.org/jira/browse/WICKET-6254 > > Tom > > >> On 05.10.2016, at 17:31, Martin Grigorov <mgrigo...@apache.org> wrote: >> >> The problem i

Re: Wicket WebSockets problem with servlet context

2016-10-05 Thread Tom Götz
has no idea about this. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Oct 5, 2016 at 5:25 PM, Tom Götz <t...@decoded.de> wrote: > >> Hi Martin, >> >> what exactly is the problem in wicket-websocket-jquer

Re: Wicket WebSockets problem with servlet context

2016-10-05 Thread Tom Götz
bsocket'; > > A workaround for you is to add url rewrite rule to Nginx to forward it to > Tomcat. > > Please file an issue at JIRA and I'll see how this could be improved. > > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov >

Re: Wicket WebSockets problem with servlet context

2016-10-05 Thread Tom Götz
Hm, no solution yet … anyone got a working example or some hint maybe? Tom > On 05.10.2016, at 15:57, Tom Götz <t...@decoded.de> wrote: > > Maybe answering my own question, but this here could help … I’ll give it a > try: > http://stackoverflow.com/questions/3228

Re: Wicket WebSockets problem with servlet context

2016-10-05 Thread Tom Götz
Maybe answering my own question, but this here could help … I’ll give it a try: http://stackoverflow.com/questions/32287103/how-to-use-nginx-as-a-proxy-for-wicket-application-using-websockets Cheers, Tom > On 05.10.2016, at 15:36, Tom Götz <t...@decoded.de> wrote: > > Hi the

Wicket WebSockets problem with servlet context

2016-10-05 Thread Tom Götz
Hi there, I have the following scenario: 1. a Spring-Boot Wicket application with Tomcat running on Port 8080 that uses Wicket WebSockets impl running in the servlet root context 2. a ngnix server that proxies /MyLocation to the mentioned Wicket app As there is no servlet context involved,

Re: ClassNotFoundException: org.apache.wicket.settings.def.JavaScriptLibrarySettings

2016-08-12 Thread Tom Götz
Thanks for the hint! I still had a 6.x dependency to wicket-jquery-ui lingering around in my classpath, now everything looks fine. Cheers, Tom > On 12.08.2016, at 11:23, Ernesto Reinaldo Barreiro wrote: > > But not on that package. Maybe your server is

ClassNotFoundException: org.apache.wicket.settings.def.JavaScriptLibrarySettings

2016-08-12 Thread Tom Götz
Hi there, I am currently migrating a webapp from Wicket 6.x to Wicket 7.3 (can’t use 7.4 due to a bug that hits us —> other topic). When clicking on some ajax link, I get the following stacktrace: https://gist.github.com/tgoetz/809196f35be40157d7c69d1879871d43 I don’t know yet what exactly

Re: Best way to track logged in users?

2016-05-13 Thread Tom Götz
t; Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Fri, May 13, 2016 at 8:02 AM, Tom Götz <t...@decoded.de> wrote: > >> Hi there, >> >> I’d like to track the currently logged in users with the corresponding >

Re: Best way to track logged in users?

2016-05-13 Thread Tom Götz
t perhaps you need a subset of the omniture features, > so another framework may suit you better. > > Just google some keywords like "web analytics" etc. > > Cheers > > Christos > > On Fri, May 13, 2016 08:02, Tom Götz wrote: >> Hi there, &g

Best way to track logged in users?

2016-05-13 Thread Tom Götz
Hi there, I’d like to track the currently logged in users with the corresponding session ids for displaying them on an admin page. What’s the best way to do that? I was thinking about storing sessionId/userId data in the database, but I’m not sure yet if that would be the best approach. What

Re: DataTable with subrows

2016-04-08 Thread Tom Götz
Thanks for the pointers Martin and Ernesto, TreeTable looks promising, I’ll play around with that one and see how far I can bend it ;-) Cheers, Tom > On 08.04.2016, at 08:57, Martin Grigorov wrote: > > Hi Tom, > > The closest we have is TreeTable component: >

DataTable with subrows

2016-04-08 Thread Tom Götz
Hi there, is there a clean way to have „subrows“ in a DataTable? I want to do something like that: http://www.bootply.com/GGAMvot45f The only solution I found yet involves writing into the output stream directly (as shown here:

Re: Wicket and Spring-Boot, how to reload changed HTML files?

2016-03-15 Thread Tom Götz
Argh, you should run Wicket in „development“ config … thanks for listening ;-) Tom > On 15.03.2016, at 22:14, Tom Götz <t...@decoded.de> wrote: > > Hi there, > > I’m currently playing around with the Spring-Boot/Wicket integration from > https://github.com/MarcGi

Wicket and Spring-Boot, how to reload changed HTML files?

2016-03-15 Thread Tom Götz
Hi there, I’m currently playing around with the Spring-Boot/Wicket integration from https://github.com/MarcGiffing/wicket-spring-boot . It’s quite handy, but I wonder: how do I reload a changed HTML/CSS/JS file without having to restart the

Re: Is there any pointers to change the markup header of a column or propertyColumn ?

2016-03-09 Thread Tom Götz
Hi, I think the question was how to modify the *header* of the column and not the cell’s content. Therefore you only need to do the following: @Override Component getHeader(String componentId) { return new MyFancyHeaderPanel(componentId); } … in your PropertyColumn (anonymous) subclass.

click behavior on table rows

2016-02-17 Thread Tom Götz
Hi there, I have a DataTable where rows are clickable and open a detail page when clicked. No problem so far. But: in one column I have a (Bootstrap) dropdown which won’t open any more because the row’s click handler is too greedy and the dropdown won’t receive the click event. I added the

Re: wicketstuff-select2 and Bootstrap 3

2016-01-15 Thread Tom Götz
Any chance for a Bootstrap theme (backport) for wicketstuff 6.x (i.e. select2 version 3.x) …? We are currently still using Wicket 6.x and can’t update yet because of infrastructure restrictions (app server not supporting Java 7 :-/ ) … Cheers, Tom > On 15.01.2016, at 10:02, Ernesto

wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Tom Götz
Hi there, does anybody have a working example for wicketstuff-select2 single/multi choices styled in Bootstrap 3 layout? I’m currently going bananas trying to integrate those into our Bootstrap-styled application. Any hint is welcome! Cheers, Tom

Re: wicketstuff-select2 and Bootstrap 3

2016-01-13 Thread Tom Götz
a priority: I did that before for a previous > version of select2 and it was mostly playing with CSS. > > On Wed, Jan 13, 2016 at 2:47 PM, Tom Götz <t...@decoded.de> wrote: > >> Hi there, >> >> does anybody have a working example for wicketstuff-select2 sin

Re: Enable single components inside a container that is disabled?

2015-12-01 Thread Tom Götz
erride #isLinkEnabled() *and* > #canCallListenerInterface() both returning true. > > Have fun > Sven > > On 30.11.2015 16:06, Tom Götz wrote: >> Unfortunately the project ist still running Wicket 6.x :-| >> >>Tom >> >> >>> On 30.11.2015,

Re: Enable single components inside a container that is disabled?

2015-11-30 Thread Tom Götz
Unfortunately the project ist still running Wicket 6.x :-| Tom > On 30.11.2015, at 15:59, Sven Meier <s...@meiers.net> wrote: > > Hi, > > in Wicket 7 your AjaxLinks can override #isEnabledInHierarchy(). > > Have fun > Sven > > > On 30.1

Enable single components inside a container that is disabled?

2015-11-30 Thread Tom Götz
Hi there, I have a form that can be either in „edit“ or „view“ mode. To toggle this, I simply call form.setEnabled(true|false), which works fine. Now, I have some ajax links inside that form that should be enabled although the form itself is disabled. Yet, I found no way to achieve this, is

PropertyModel pointing at an IModel property

2015-11-11 Thread Tom Götz
Hi there, I have the following situation: MyClass extends Panel { private IModel someModel; MyClass(String id) { super(id); add(new Label(„label“, PropertyModel.of(this, „someModel“)); } } But instead of displaying someModel’s modelObject, the Label displays

Re: PropertyModel pointing at an IModel property

2015-11-11 Thread Tom Götz
Ernesto Reinaldo Barreiro <reier...@gmail.com> wrote: > > What happens if you user "someModel.object"? > > On Wed, Nov 11, 2015 at 10:48 AM, Tom Götz <t...@decoded.de> wrote: > >> >> Hi there, >> >> I have the following situation:

Re: PropertyModel pointing at an IModel property

2015-11-11 Thread Tom Götz
fter the . is a >> model, i.e. a.b -> b, is a model automatically call b.getObject >> >> On Wed, Nov 11, 2015 at 11:02 AM, Tom Götz <t...@decoded.de> wrote: >> >>> Yeah this will work, thanks. I did fear that somebody came around with >>> that pro

Re: Toggling visibility via ajax fails

2015-10-07 Thread Tom Götz
… additional info: container + contained components are visible if I do a page refresh Tom > On 07.10.2015, at 12:42, Tom Götz <t...@decoded.de> wrote: > > Hi there, > > I’m currently struggling with toggling the visibility of a WebMarkupContainer: > > * setO

Toggling visibility via ajax fails

2015-10-07 Thread Tom Götz
Hi there, I’m currently struggling with toggling the visibility of a WebMarkupContainer: * setOutputMarkupIdPlaceholderTag is set to true * container is not visible, i.e. contained components are hidden * ajax request is triggered that should make the container visible * the container is

Re: Toggling visibility via ajax fails

2015-10-07 Thread Tom Götz
. Verify that the component id is existing in the DOM. > Wicket will log an error if it is not anyway. > > Martin Grigorov > Wicket Training and Consulting > https://twitter.com/mtgrigorov > > On Wed, Oct 7, 2015 at 12:44 PM, Tom Götz <t...@decoded.de> wrote: > >&g

Bootstrap Typeahead example?

2015-06-23 Thread Tom Götz
Hi, I’m currently trying to implement a Typeahead component using the wicket-bootstrap project (v 0.10.1, Wicket version 7.0.0-M5). Is there some example how the template mechanism can be used (de.agilecoders.wicket.extensions.markup.html.bootstrap.form.typeaheadV10.DataSet#Templates)? I found

[OT] Available for hire

2015-05-06 Thread Tom Götz
Dear Wicketeers, my current client engagement is coming to an end and I will be available for hire ~middle/end of May. If anyone has knowledge of some Wicket related project (preferably in Germany or central/western Europe or off-site/remote) that needs some support, I would be interested in

Re: Could not clear select2Choice component model value.

2015-05-04 Thread Tom Götz
and Consulting https://twitter.com/mtgrigorov On Thu, Apr 30, 2015 at 10:27 AM, Tom Götz t...@decoded.de wrote: I found the source of the mentioned changes: https://github.com/wicketstuff/core/commit/79781d83cf11ac63d2e661328fa7176b93184c64 -Tom On 30.04.2015, at 08:58, Tom Götz t

Re: Could not clear select2Choice component model value.

2015-04-30 Thread Tom Götz
See my inline comments On 30.04.2015, at 04:29, Maxim Solodovnik solomax...@gmail.com wrote: The changes I have made were (most probably) merged from original Igor's code (https://github.com/ivaynberg/wicket-select2) I can’t find the ListT choices“ property of AbstractSelect2Choice

Re: Could not clear select2Choice component model value.

2015-04-30 Thread Tom Götz
I found the source of the mentioned changes: https://github.com/wicketstuff/core/commit/79781d83cf11ac63d2e661328fa7176b93184c64 -Tom On 30.04.2015, at 08:58, Tom Götz t...@decoded.de wrote: See my inline comments On 30.04.2015, at 04:29, Maxim Solodovnik solomax...@gmail.com wrote

Re: Could not clear select2Choice component model value.

2015-04-29 Thread Tom Götz
Sorry, Github link was broken in last email (additional „:“ at the end), use this: https://github.com/wicketstuff/core/commit/92851a253253849582a117d66dee5fcdb15c7353 -Tom On 29.04.2015, at 14:01, Tom Götz t...@decoded.de wrote: Hi Maxim, I do not understand the changes you

Re: Could not clear select2Choice component model value.

2015-04-29 Thread Tom Götz
Hi Maxim, I do not understand the changes you introduced to AbstractSelect2Choice.java in https://github.com/wicketstuff/core/commit/92851a253253849582a117d66dee5fcdb15c7353: 1. you added a private ListT choices“ property, what is the purpose of this? Isn’t the ChoiceProvider supposed to

Ace Editor Wicket integration?

2015-03-16 Thread Tom Götz
Hi folks, has anybody already done a successful Wicket integration of the Ace code editor (https://github.com/ajaxorg/ace https://github.com/ajaxorg/ace) and is willing to share it (or at least some code snippets)? -Tom

6.19.0 release date?

2015-01-22 Thread Tom Götz
Hi there, are there already considerations for a release date of 6.19.0? Cheers, -Tom - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

CircularDependencyException when upgrading from Wicket 6.9.0 to 6.10.0

2014-11-07 Thread Tom Götz
Hi there, I’m trying to upgrade some semi-legacy app to the current Wicket version. I discovered that I get a CircularDependencyException when upgrading from 6.9.0 to 6.10.0 without any code changes. I created a quickstart based on Wicket 6.10.0 that throws the exception when opening the home

Re: ResourceModel with default *key*

2014-11-06 Thread Tom Götz
You could try something like this: https://gist.github.com/tgoetz/0735b05d47b16acf2fd7 https://gist.github.com/tgoetz/0735b05d47b16acf2fd7 Cheers, -Tom On 06.11.2014, at 11:53, Guillaume Smet guillaume.s...@gmail.com wrote: Hi all, Maybe we are missing something but we haven't found

Tracking changes when updating models

2014-10-29 Thread Tom Götz
Hi there, I need to track all modifications made to FormComponents' target objects in order to generate some kind of changelog when saving my entity. Therefore I created a custom Model that wraps the components' default model and remembers the original value when setObject is called. This

Re: Global Ajax Event Handler

2014-09-09 Thread Tom Götz
See https://cwiki.apache.org/confluence/display/WICKET/Wicket+Ajax, section Global Ajax call listeners“. Cheers, -Tom On 09.09.2014, at 10:58, Tobias Soloschenko tobiassolosche...@googlemail.com wrote: Hi all, is there a way to register a global ajax event handler within Wicket? For

Change name of session cookie

2014-05-16 Thread Tom Götz
Hi, might be slightly offtopic, but: does someone know how to change to name of the session cookie from „JSESSIONID“ to something else (in Tomcat 7.0.42 and Jetty 6.1.26)?. Background: we have a Wicket app that runs inside an iFrame of another Wicket app, so we have two cookies named

Re: Change name of session cookie

2014-05-16 Thread Tom Götz
Ah, wrong. It seems that there’s only one cookie. But both apps seem to have the same session id (running in the same container) … -Tom On 16.05.2014, at 15:13, Tom Götz t...@decoded.de wrote: Hi, might be slightly offtopic, but: does someone know how to change to name of the session

Re: AjaxTabbedPanel and validation for all tabs

2014-05-15 Thread Tom Götz
The easiest solution I can think of. Why do you want to avoid that? Cheers, -Tom On 06.05.2014, at 16:13, mscoon msc...@gmail.com wrote: Is there a way to solve this? Client side tabs are a solution I guess but one I'd like to avoid if possible.

Re: Application Scope

2014-05-06 Thread Tom Götz
You can’t, and it isn’t a deficiency, just think about e.g. session replication among multiple cluster nodes. Cheers, -Tom On 06.05.2014, at 15:52, Richard W. Adams rwada...@up.com wrote: I assume that means we can't store non-serializable objects in the session? This is sounding like a

Problems with wicket-select2 and session timeout

2014-04-02 Thread Tom Götz
Hello everyone, I already posted this on https://github.com/ivaynberg/wicket-select2/issues/83 but thought I could mention it here also, as I’m not sure yet if the described problem is related to wicket-select2 or Wicket itself: if my current session is already expired and I click a

Re: wicket:header-items/

2014-03-14 Thread Tom Götz
This is really helpful, thanks for your time! Cheers, -Tom On 14.03.2014, at 13:50, Martin Grigorov mgrigo...@apache.org wrote: Hi, At http://wicketinaction.com/2014/03/header-contributions-positioning/ I've added a short description of a new special wicket tag - wicket:header-items/.

Re: Pure in-memory IPageStore implementation?

2014-03-06 Thread Tom Götz
On 06.03.2014, at 08:39, Martin Grigorov mgrigo...@apache.org wrote: On Thu, Mar 6, 2014 at 9:29 AM, Tom Götz t...@decoded.de wrote: Hi there, I have an application that doesn’t need back-button support and also has several domain objects that are not meant to be serialized. I thought

Pure in-memory IPageStore implementation?

2014-03-05 Thread Tom Götz
Hi there, I have an application that doesn’t need back-button support and also has several domain objects that are not meant to be serialized. I thought it could be a good idea to implement an IPageStore that skips serialization and simply keeps the last n pages in memory (where n might be

Re: Component Queueing is here (master), aka Free Wicket From Hierarchy Hell, aka Markup Driven Component Tree

2014-02-28 Thread Tom Götz
Having read your article, I think this sounds like a very promising approach. Thanks Igor! Cheers, -Tom On 28.02.2014, at 03:00, Igor Vaynberg igor.vaynb...@gmail.com wrote: in the past couple of weeks i finally had some time to finish up the component queueing feature. it is meant to

Central exception handling using a custom RequestCycleListener

2014-02-19 Thread Tom Götz
Hi there, we’d like to implement a centralized exception handling strategy for backend/service calls from with within Wicket components. Therefor I thought it could be a good idea to do this in a custom org.apache.wicket.request.cycle.AbstractRequestCycleListener#onException implementation.

Re: Central exception handling using a custom RequestCycleListener

2014-02-19 Thread Tom Götz
Wicket Training and Consulting On Wed, Feb 19, 2014 at 5:53 PM, Tom Götz t...@decoded.de wrote: Hi there, we’d like to implement a centralized exception handling strategy for backend/service calls from with within Wicket components. Therefor I thought it could be a good idea to do

AjaxRequestTarget.IListener question

2014-02-05 Thread Tom Götz
Hi there, I’d like to add something to the AjaxRequestTarget at the very end“, i.e. I need to be the last one to add something to the target (because I need to check some preconditions that might change if the target is manipulated later on). Reading the Javadoc of

Re: AjaxRequestTarget.IListener question

2014-02-05 Thread Tom Götz
and Consulting On Wed, Feb 5, 2014 at 4:09 PM, Tom Götz t...@decoded.de wrote: Hi there, I’d like to add something to the AjaxRequestTarget at the very end“, i.e. I need to be the last one to add something to the target (because I need to check some preconditions that might change

Additional ajax request before ajax form submit

2013-09-27 Thread Tom Götz
Hi, I have the following situation: we use a tabpanel (8-10 tabs) to display lots of form components. On tab change the content of the activated tab is made visible via ajax, content of all other tabs is made invisible (setVisible(false)). To not lose user input we do a form submit when

Re: Slow performance when tabbing through form elements

2013-09-22 Thread Tom Götz
is the reason. Do you have tabindex on the form elements ? On Sat, Sep 21, 2013 at 11:21 AM, Tom Götz t...@decoded.de wrote: Hi! I've got a performance problem when navigating through form elements using the tab key. This issue is not directly wicket related, but maybe someone could

Slow performance when tabbing through form elements

2013-09-21 Thread Tom Götz
Hi! I've got a performance problem when navigating through form elements using the tab key. This issue is not directly wicket related, but maybe someone could point me into the right direction how to analyze/improve the situation: we're using a tabpanel to render several tabs (~8-10)