Re: AjaxLink overridden by SimpleAttributeModifier(onclick)

2010-11-24 Thread Martin Grigorov
See IAjaxCallDecorator new AjaxLink(...) { ... protected IAjaxCallDecorator getAjaxCallDecorator() {...} } On Wed, Nov 24, 2010 at 8:45 AM, smallufo small...@gmail.com wrote: If I want to add a simple 'onclick warning' to an AjaxLink , the ajax's behavior will be overridden by :

setVersioned setStatelessHint

2010-11-24 Thread Arjun Dhar
Hi, if I have BookMarkable pages and they are pretty much stateless, does it buy me much to do: setStatelessHint(false); for every component? imo Adds a bit of verbosity to the code; though must be a reason why it exists. Please advice best practice -- View this message in context:

Ajax Panel Update

2010-11-24 Thread Arjun Dhar
Hi, I have a Tree (representing a product line) and an adjacent Panel representing Product listing within a category/line. On click of the Link the Panel updates. I have the following code, all works except am not sure how to go about refreshing the Panel with updated DataModel: ... In

Re: Ajax Panel Update

2010-11-24 Thread jcgarciam
Just an idea: if the panel holds a model pointing to a ProductReference instance, you can change the underlying model. targetUpdatePanel.modelChanging(); targetUpdatePanel.setModel(new ProductReferenceLoadableDetachableModel(prod)); targetUpdatePanel.modelChanged(); On Wed, Nov 24, 2010

Re: close tag not found error in markup

2010-11-24 Thread andrea.castello
Basically, it is a (supposed) bug in version 1.4.13, something very similar to this https://issues.apache.org/jira/browse/WICKET-2620 Downgrading to 1.4.5 solved my issue. -- View this message in context:

Re: close tag not found error in markup

2010-11-24 Thread Martin Grigorov
Please create application that shows the problem. Zip it and attach it to a ticket in Jira. Thanks! On Wed, Nov 24, 2010 at 5:03 PM, andrea.castello a.castello.pronet...@gmail.com wrote: Basically, it is a (supposed) bug in version 1.4.13, something very similar to this

Re: close tag not found error in markup

2010-11-24 Thread Andrea Del Bene
Since version 1.4.6 DataTable HTML has changed to fix https://issues.apache.org/jira/browse/WICKET-2620. Component with id toolbar has been removed and that should cause the problem reported by Andrea. Until 1.4.5 /wicket:panel thead wicket:id=topToolbars wicket:container

Re: setVersioned setStatelessHint

2010-11-24 Thread Igor Vaynberg
wicket can automatically determine if the page is stateless... -igor On Wed, Nov 24, 2010 at 6:41 AM, Arjun Dhar dhar...@yahoo.com wrote: Hi,  if I have BookMarkable pages and they are pretty much stateless, does it buy me much to do: setStatelessHint(false); for every component? imo Adds

Re: Ajax Panel Update

2010-11-24 Thread Arjun Dhar
Thanks Jc, I employed that. In addition, the model was inserting a DataTable that was fetching its data from a DataProvider. So it was necessary to refresh not only the model but the DataTable; so I separated the initialization of the DataTable as follows: /* * Separating the

Re: WicketRuntimeException: component not found on page @L

2010-11-24 Thread Alec Swan
The biggest problem with this issue is that it's intermittent. I saw this happening a few time and I was not able to reproduce it manually right after I saw it. One time I sat there for 15 minutes repeating the sequence of clicks that had caused the error just a minute before that and was not able

Re: UploadProgressBar on nested forms

2010-11-24 Thread Alec Swan
Done. JIRA 3191. Thanks On Tue, Nov 23, 2010 at 10:39 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: file another issue with a new quickstart. -igor On Tue, Nov 23, 2010 at 8:45 PM, Alec Swan alecs...@gmail.com wrote: Hello, Thank you for promptly fixing the problem with the upload

IResourceSettings.setUseTimestampOnResources(true) and performance

2010-11-24 Thread hok
Hello, I had a problem with slow loading of pages and response to ajax requests. After some debugging I traced the problem to be that wicket constantly tries: DEBUG - UrlResourceStream - cannot convert url:

Re: IResourceSettings.setUseTimestampOnResources(true) and performance

2010-11-24 Thread Peter Ertl
Can you file an JIRA issue and attach a quickstart to reproduce this case? That would help analyzing your mentioned issue tremendously... Am 24.11.2010 um 20:27 schrieb hok: Hello, I had a problem with slow loading of pages and response to ajax requests. After some debugging I traced the

RE: Javascript files not loading in IE6

2010-11-24 Thread kayakgreg
I'm also having the same issue with Wicket 1.4.13 and IE 6. IE shows the error 'Wicket' is undefined and it points to the following line in the HTML code: Wicket.Event.add(window, domready, function(event) { Reverting back to Wicket 1.4.7 fixes the problem for me too. Greg -- View this

Re: Javascript files not loading in IE6

2010-11-24 Thread Martin Grigorov
I'd bet it is one of the famous: if (Wicket == undefined) vs. if (typeof(Wicket) != 'undefined') checks I'll check what changes we have between 1.4.7 and 1.4.13 in that area. On Wed, Nov 24, 2010 at 8:38 PM, kayakgreg g...@greg-williams.com wrote: I'm also having the same issue with Wicket

wicket stuff progressbar

2010-11-24 Thread Peter Karich
Hi, I am playing with the progressbar* but wonder where I can grab the sources for 1.4? this leads to an exception: https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-progressbar/ Regards, Peter. *

Re: wicket stuff progressbar

2010-11-24 Thread Martin Grigorov
It looks like SF SVN is down ... The sources for 1.4 are in .../branches/1.4.13/... On Wed, Nov 24, 2010 at 9:12 PM, Peter Karich peat...@yahoo.de wrote: Hi, I am playing with the progressbar* but wonder where I can grab the sources for 1.4? this leads to an exception:

Re: AjaxLazyLoadPanel, nothing else works until it finishes loading

2010-11-24 Thread avrahamr
I'm having the same problem. Have anyone found a solution? On Thu, Aug 12, 2010 at 7:42 AM, wincen [via Apache Wicket] ml-node+2322202-522808124-117...@n4.nabble.comml-node%2b2322202-522808124-117...@n4.nabble.com wrote: I got my AjaxLazyLoadPanel to work probably but nothing else on the

Re: IResourceSettings.setUseTimestampOnResources(true) and performance

2010-11-24 Thread hok
https://issues.apache.org/jira/browse/WICKET-3194 https://issues.apache.org/jira/browse/WICKET-3194 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/IResourceSettings-setUseTimestampOnResources-true-and-performance-tp3057946p3058085.html Sent from the Users forum

Re: IResourceSettings.setUseTimestampOnResources(true) and performance

2010-11-24 Thread Peter Ertl
Thanks! Am 24.11.2010 um 22:10 schrieb hok: https://issues.apache.org/jira/browse/WICKET-3194 https://issues.apache.org/jira/browse/WICKET-3194 -- View this message in context:

Re: AjaxLazyLoadPanel, nothing else works until it finishes loading

2010-11-24 Thread jwray
The page will block until the panel is loaded. There are a number of threads discussing this. Here are a couple of gists that allow panel content to be loaded in an asynchronous manner in another thread, thus making the UI appear non-blocking. https://gist.github.com/594468

Re: IResourceSettings.setUseTimestampOnResources(true) and performance

2010-11-24 Thread Peter Ertl
fixed in trunk for 1.5 Am 24.11.2010 um 22:39 schrieb Peter Ertl: Thanks! Am 24.11.2010 um 22:10 schrieb hok: https://issues.apache.org/jira/browse/WICKET-3194 https://issues.apache.org/jira/browse/WICKET-3194 -- View this message in context:

Invalid Date Using DatePicker and Short Date Format

2010-11-24 Thread Shelli Orton
Hi, I'm having an issue using a DatePicker and hoping it's a simple fix, but I can't find it. I have this code: public class MyPanel extends Panel { Label createdDateLabel; DateTextField createdDateText; DatePicker createdDatePicker; public MyPanel(String id)

Announcing the Topicus Dashboard

2010-11-24 Thread Martijn Dashorst
The Topicus Dashboard is an information radiator showing build status, production server status, twitter timeline, train departure times, important events and much more. The Atlassian folks are running a competition for the Ultimate Wallboard and we (Topicus) just submitted our entry for the

Re: Announcing the Topicus Dashboard

2010-11-24 Thread Brian Topping
Everyone note: If you aren't on FB and need to register manually, the voting pages DO NOT place a vote for you once you register. You must GO BACK TO THE PAGE and then place your vote after you activate your account. (No promotional fees were paid for this public service announcement.) On

Re: close tag not found error in markup

2010-11-24 Thread Ernesto Reinaldo Barreiro
Yes, I remember having to fix my own extension of DataTable when migrating between two 1.4.x versions. That might be the change you mention. Ernesto On Wed, Nov 24, 2010 at 5:55 PM, Andrea Del Bene adelb...@ciseonweb.it wrote: Since version 1.4.6 DataTable HTML has changed to fix