Re: Need XML pages in iso-8859-1 encoding ipv utf-8

2008-01-15 Thread Ann Baert
I tried getMarkupSettings().setDefaultMarkupEncoding( "ISO-8859-1" ); and -Dfile.encoding=ISO-8859-1 but they didn't work. Instead I used : getRequestCycleSettings().setResponseRequestEncoding("ISO-8859-1"); which solves the problem. Tom Desmet wrote: > > Hi, > > I have a problem with XML pa

In IE6, a hash string is automatically appended to an ajax

2008-09-01 Thread Ann Baert
In IE6, a hash string is automatically appended to an ajax request if the page from which the ajax request originates, was invoked with that specific hash string. For example, a page that contains an AjaxLink is requested with an hash string in the url (url + #topfocus). I've created an jira is

url-escaping is not undone for requestcodingstrategy

2008-09-09 Thread Ann Baert
When a resourceUrl with special characters is invoked by Wicket. Wicket does not read it correctly. I've made a jira issue with an example: https://issues.apache.org/jira/browse/WICKET-1825 -- View this message in context: http://www.nabble.com/url-escaping-is-not-undone-for-requestcodingstrat

Doc. of final method getReplaceModel says it can be overridden

2007-07-30 Thread Ann Baert
The "getReplaceModel" method of the AttributeModifier is declared protected & final, and its docs say that it can be used in subclasses. I use wicket 1.3 beta 2 How can this final method be overridden in subclasses? Is this a misperception over here, or is this a documentation or an API mistake

How to throw new PageExpiredException?

2009-07-10 Thread Ann Baert
Hello, How can I throw a PageExpiredException in the constructor of my WebPage? Because the exception is wrapped by Wicket with WicketRuntimeException it goes to the InternalErrorPage. Thanks, Ann DISCLAIMER http://www.tvh.be/newen/pages/emaildisclaimer.html";> http://www.tvh.be/newen/

Re: How to throw new PageExpiredException?

2009-07-13 Thread Ann Baert
ything with the RuntimeException. So he has still a WicketRuntimeException instead of the PageExpiredException. Ann igor.vaynberg wrote: > > you can try unwrapping the exceptions in > requestcycle.onruntimeexception and call super with the page exipred > exception. > > -igor > &g

Re: How to throw new PageExpiredException?

2009-07-16 Thread Ann Baert
Can anyone help me with this problem please? Thanks in advance, Ann. Ann Baert wrote: > > I have overridden the RequestCycle.onRuntimeException method: > > @Override > public RequestCycle newRequestCycle(final Request request, final Response > response) { > retur

Re: How to throw new PageExpiredException?

2009-07-16 Thread Ann Baert
ePage(). Serkan Camurcuoglu-3 wrote: > > If all you want is to display a page expired page, maybe you could just > use > > throw new RestartResponseException(PageExpiredErrorPage.class); > > in your page constructor. > > > > Ann Baert wrote: >> Can anyone

Re: How to throw new PageExpiredException?

2009-07-16 Thread Ann Baert
rPage(CheesrPageExpiredErrorPage.class); > settings.setInternalErrorPage(CheesrInternalErrorPage.class); > } > = > Doesn't this accomplish what you want? > > Regards, > Linda > > Ann Baert wrote: >> That's not how I want it. >>

AutoComplete textfield ignores "visible" property within hierarchy.

2009-09-29 Thread Ann Baert
ncluded to simulate the problem. https://issues.apache.org/jira/browse/WICKET-2497 Met vriendelijke groeten, ANN BAERT ICT-DEPARTMENT Internet technologie: Software Engineer Tel.:+32 56 43 42 11 Fax:+32 56 43 44 88 E-mail: ann.ba...@tvh.com Contactsheet: ANN BAERT TVH FORKLIFT PARTS nv-sa - BRA

Re: AutoComplete textfield ignores "visible" property within hierarchy.

2009-09-29 Thread Ann Baert
I already opened a jira issue: https://issues.apache.org/jira/browse/WICKET-2497 igor.vaynberg wrote: > > please open a jira issue. > > -igor > > On Tue, Sep 29, 2009 at 7:59 AM, Ann Baert wrote: >> When writing an autocomplete textfield on a form that is first

Problem with wicket:extend / wicket:child and ListView on not visible component

2009-10-23 Thread Ann Baert
I have a problem with inheritance from panels with listview on a not visible component. I think it's a bug, so I've made a jira issue for it with more explanation and an example: https://issues.apache.org/jira/browse/WICKET-2537 Ann DISCLAIMER http://www.tvh.be/newen/pages/emaildisclai

Combination CompoundPropertyModel and ChoiceRenderer on DropDownChoice gives problems

2009-11-08 Thread Ann Baert
I've created a jira issue with more information and an example for this problem: https://issues.apache.org/jira/browse/WICKET-2565 DISCLAIMER http://www.tvh.com/newen2/emaildisclaimer/default.html "This message is delivered to all addressees subject to the conditions set forth in the

autocomplete js error in IE

2011-10-20 Thread Ann Baert
A wicket autocomplete gives errors in Internet Explorer. The error is on line 42 of wicket-autocomplete.js. On that line stands the following code: objonkeyup=obj.onkeyup; I'm using Wicket 1.5.1. And you can reproduce the problem on the wicket examples: http://www.wicket-library.com/wicket-exampl

DownloadLink with AjaxIndicator

2010-10-13 Thread Ann Baert
I would like to add an ajaxindicator on a DownloadLink. How can I do this? But because DownloadLink isn't ajax, I tried the following: AjaxLink downloadLink = new AjaxLink("id") { @Override public void onClick(AjaxRequestTarget target) { } }; downloadLink.add(new AjaxEventBehavior(

Treads on timed_waiting with lockPage

2013-02-06 Thread Ann Baert
We have a wicket application in production, and from time to time a strange phenomenon happens. We're using jetty, and at a certain moment, the whole pool of jetty worker treads is filled up. I've made a program that dumps the stack traces of all active treads, and a lot of treads are blocking on t

ThreadLocal with ajax

2013-03-06 Thread Ann Baert
Hi, I have a springbean with a ThreadLocal property. On the page (constructor and onBeforeRenderer) I set a value to that ThreadLocal property. When I do the get of that property after an ajax call, the value is null. I made a quickstart to simulate the problem. I print the ThreadLocal value on t

Re: ThreadLocal with ajax

2013-03-11 Thread Ann Baert
Hi, Is their anything on the page that is triggered when an ajaxcall has happened? The onBeforeRenderer of the page is not called when their was an ajaxcall. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ThreadLocal-with-ajax-tp4657018p4657141.html Sent from the U