Re: Google Charts

2011-11-10 Thread Martin Grigorov
I'd recommend you to put your project in GitHub or any other similar service so other people can see your work and contribute. Why didn't you contribute to https://github.com/wicketstuff/core/tree/master/jdk-1.5-parent/googlecharts-parent ? You say it is out of date but it is much better to update

Re: Design patterns for panel navigation

2011-11-10 Thread Per Newgro
With 1.5.x you get the great inter component event mechanism. Cheers Per Am 10.11.2011 05:04, schrieb Bertrand Guay-Paquet: Hi, Panels are great to encapsulate functionality in reusable units. In order to reuse some panels in different contexts, I need to make the navigation elements they

Re: Validating HTML 4

2011-11-10 Thread Martin Grigorov
So you say that br/ is valid but link / is not. Both of them are void elements. Why is this difference in handling them ? Can you provide a link to specification where they say that link / is invalid in HTML4 ? On Wed, Nov 9, 2011 at 7:26 PM, pgoiffon.wic...@free.fr wrote:

RE: abort loading lazy components

2011-11-10 Thread Michal Wegrzyn
Hi, Could you please tell me what is the status of this issue? Should I create a Jira issue and/or quickstart or is it won't fix/invalid? Best regards, Michal Wegrzyn -Original Message- From: Michal Wegrzyn [mailto:michal.wegr...@onior.com] Sent: Friday, November 04, 2011 11:56 To:

Re: Validating HTML 4

2011-11-10 Thread manuelbarzi
in HTML the link tag has no end tag. in XHTML the link tag must be properly closed. source: http://www.w3schools.com/tags/tag_link.asp . On Thu, Nov 10, 2011 at 9:29 AM, Martin Grigorov mgrigo...@apache.org wrote: So you say that br/ is valid but link / is not. Both of them are void

Re: abort loading lazy components

2011-11-10 Thread Martin Grigorov
Hi, I see no solution for your case. Using BookmarkablePageLink works as you confirmed but I'm not aware of clean way to cancel running Ajax requests and replace them with completely new one. XMLHttpRequest has #abort() method which cancels the request but this will lead co socket close

Re: Validating HTML 4

2011-11-10 Thread Martin Grigorov
I'm interested in a specification saying that link / is invalid in HTML4. On Thu, Nov 10, 2011 at 10:39 AM, manuelbarzi manuelba...@gmail.com wrote: in HTML the link tag has no end tag. in XHTML the link tag must be properly closed. source: http://www.w3schools.com/tags/tag_link.asp . On

Re: Validating HTML 4

2011-11-10 Thread manuelbarzi
in HTML the link tag has no end tag may it be enough to confirm link/ is perfectly valid in html, and not the opposite. . On Thu, Nov 10, 2011 at 9:49 AM, Martin Grigorov mgrigo...@apache.org wrote: I'm interested in a specification saying that link / is invalid in HTML4. On Thu, Nov 10,

Re: Validating HTML 4

2011-11-10 Thread Martijn Dashorst
While I usually enjoy painting a bike shed, and this is one perfect example of mine being green, the 4.01 specification is from 1999, which is 12 years ago. While technically closing a link tag is considered a validation error (I tried the html validator of w3c, see below), in practice the HTML

Re: Validating HTML 4

2011-11-10 Thread Martijn Dashorst
Just to be clear: we live the xhtml validated markup dream and it sucks. You can't use anything browsers have added since 2001. Stuff that makes users happy: autofocus, placeholder text, no autofill. We modified our xhtml validator to support these cases (and to choke on other invalid markup)

Re: wicket-dojo wrappers (correction)

2011-11-10 Thread James Stewart
Thanks David, I've just pulled down the code now to have a look. On 10/11/2011 3:15 AM, David Berkman wrote: Sorry for the repost, but this list doesn't take attachments I guess, so I've upload the code at https://github.com/zenbones/WicketDojo I've had a number of requests, so I'll upload

Locale custom mapper in Wicket's example with JQWicket

2011-11-10 Thread Toru Watanabe
Hello, I'm trying to use Wicket(1.5.1) with JQWicket(0.7). But it does not work together with a locale custom mapper shown in Wicket's example page. http://wicketstuff.org/wicket/mappers/de_DE When I access a page where JQWicket components are added through this custom mapper, no JavaScript of

RE: abort loading lazy components

2011-11-10 Thread Michal Wegrzyn
-Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Thursday, November 10, 2011 9:48 To: users@wicket.apache.org Subject: Re: abort loading lazy components Hi, I see no solution for your case. Using BookmarkablePageLink works as you confirmed but I'm not

Re: Validating HTML 4

2011-11-10 Thread Pierre Goiffon
Hi, Le 10/11/2011 09:29, Martin Grigorov a écrit : So you say thatbr/ is valid butlink / is not. I thought that any self closing tag was invalid in any html version, html 4 as of html 5. But the validator is ok with self closing br and link in html 5, and the html 5 draft recommandation

Re: abort loading lazy components

2011-11-10 Thread Martin Grigorov
This is fixed in 1.5.3 (currently in voting) On Thu, Nov 10, 2011 at 3:37 PM, Michal Wegrzyn michal.wegr...@onior.com wrote: -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Thursday, November 10, 2011 9:48 To: users@wicket.apache.org Subject: Re: abort

Re: Validating HTML 4

2011-11-10 Thread Martin Grigorov
On Thu, Nov 10, 2011 at 3:41 PM, Pierre Goiffon pierre.goif...@interview-efm.com wrote: Hi, Le 10/11/2011 09:29, Martin Grigorov a écrit : So you say thatbr/  is valid butlink /  is not. I thought that any self closing tag was invalid in any html version, html 4 as of html 5. But the

AjaxLazyLoadPanel changes

2011-11-10 Thread Michal Wegrzyn
Hi, Is it possible to apply two changes for AjaxLazyLoadPanel (apache.wicket.extensions.ajax.markup.html.AjaxLazyLoadPanel)? - Can LAZY_LOAD_COMPONENT_ID be public? Sometimes id is needed beforehand. - AjaxLazyLoadPanel uses anonymous AbstractDefaultAjaxBehavior, so AjaxChannel cannot be

RE: abort loading lazy components

2011-11-10 Thread Michal Wegrzyn
That's great, thanks. I'll try it ASAP. Best regards, Michal Wegrzyn -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Thursday, November 10, 2011 14:50 To: users@wicket.apache.org Subject: Re: abort loading lazy components This is fixed in 1.5.3

Re: AjaxLazyLoadPanel changes

2011-11-10 Thread Martin Grigorov
Use Jira for such RFEs On Thu, Nov 10, 2011 at 4:12 PM, Michal Wegrzyn michal.wegr...@onior.com wrote: Hi, Is it possible to apply two changes for AjaxLazyLoadPanel (apache.wicket.extensions.ajax.markup.html.AjaxLazyLoadPanel)? - Can LAZY_LOAD_COMPONENT_ID be public? Sometimes id is needed

Re: Validating HTML 4

2011-11-10 Thread Pierre Goiffon
Le 10/11/2011 10:33, Martijn Dashorst a écrit : While technically closing alink tag is considered a validation error (I tried the html validator of w3c, see below), in practice the HTML 4.01 standard is really crippled, as are the other HTML standards from that time. Can you provide us some

Re: Validating HTML 4

2011-11-10 Thread Pierre Goiffon
Le 10/11/2011 14:58, Martin Grigorov a écrit : I thought that any self closing tag was invalid in any html version, html 4 as of html 5. But the validator is ok with self closing br and link in html 5, and the html 5 draft recommandation says very clearly self closing tags are allowed for void

Re: Validating HTML 4

2011-11-10 Thread Martin Grigorov
On Thu, Nov 10, 2011 at 4:34 PM, Pierre Goiffon pierre.goif...@interview-efm.com wrote: Le 10/11/2011 14:58, Martin Grigorov a écrit : I thought that any self closing tag was invalid in any html version, html 4 as of html 5. But the validator is ok with self closing br and link in html 5,

Re: wicket-dojo wrappers (correction)

2011-11-10 Thread James Stewart
Hi David, Would it be possible to put up the jar that contains or the java file: org.smallmind.nutsnbolts.util.DotNotationComparator? I get a compile error with this and I don't understand what it does in terms of dot notation. Thanks, James. On 10/11/2011 3:15 AM, David Berkman wrote:

Custom ISerializer being used during serialization but _not_ during deserialization

2011-11-10 Thread Peter Gardfjäll
Hi all, in my application I register a custom ISerializer implementation in the WebApplication.init() method as follows: @Override protected void init() { super.init(); getFrameworkSettings().setSerializer(new MySerializer(getApplicationKey())); ... This works

Re: Custom ISerializer being used during serialization but _not_ during deserialization

2011-11-10 Thread Martin Grigorov
Hi, That's all you need to do to configure your custom ISerializer. DefaultPageStore uses the same instance for serialization and deserialization. Each user session has its own instance of IPageManager that keeps an instance of IPageStore. See

Re: Validating HTML 4

2011-11-10 Thread Pierre Goiffon
Le 10/11/2011 16:11, Martin Grigorov a écrit : I just tested link ... in Wicket 1.5 quickstart and it produced link ... (no auto close of the start tag). Can you explain your test ? I'v just downloaded the wicket 1.5.2 package (zip version with sources) and I see that

Re: Google Charts

2011-11-10 Thread anant . asty
Martin, I think I should just contribute to the existing google charts project. Instead of reinventing the wheel. -Original Message- From: Martin Grigorov mgrigo...@apache.org Date: Thu, 10 Nov 2011 10:20:17 To: users@wicket.apache.org Reply-To: users@wicket.apache.org Subject: Re:

Adding a converter to a label

2011-11-10 Thread Brian Mulholland
Is it not possible to add a converter to label? The Label's add() takes Behaviors, and Converters evidently aren't behaviors. I know I can modify the model or do the conversion beforehand, but I like snapping converters onto controls. Brian Mulholland

Re: Adding a converter to a label

2011-11-10 Thread Brian Mulholland
Please ignore. I got my wires crossed. Brian Mulholland On Thu, Nov 10, 2011 at 1:00 PM, Brian Mulholland blmulholl...@gmail.com wrote: Is it not possible to add a converter to label?  The Label's add() takes Behaviors, and Converters evidently aren't behaviors.  I know I can modify the

Question regarding wiquery Rangeslider

2011-11-10 Thread odin568
Hi, I want to implement Sliders into my Wicket Project. This works fine with the example shown here: http://wiquery-examples-1-1-x.appspot.com/?wicket:bookmarkablePage=wicket-1:org.odlabs.wiquery.examples.slider.SliderPage Now I want to implement Range sliders. So i don't need only the Value of

Re: Question regarding wiquery Rangeslider

2011-11-10 Thread julien roche
hi, I remenber about an AjaxSlider component with method to get the values. I think you will find more hints on the wiquery wiki pages. cheers jul Le 10 nov. 2011 19:51, odin568 markus@web.de a écrit : Hi, I want to implement Sliders into my Wicket Project. This works fine with the

Re: Question regarding wiquery Rangeslider

2011-11-10 Thread odin568
Thanks. The problem is - Only normal Sliders are described in the Wiki - no SliderRange. I didn't find any Infos anywhere, that's why I post here hoping someone could help me... -- View this message in context:

RE: wicket-dojo wrappers (correction)

2011-11-10 Thread David Berkman
Sorry. I guess I can't get away with putting up the code and walking away. I've translated the code into a complete, and building (at least locally), maven project. Anyone interested can fork it from GitHub, alter the poms, and get it rolling. I've put it on a new namespace I've bought for the

Re: wicket-dojo wrappers (correction)

2011-11-10 Thread anant . asty
David, I would love to help you manage/maintain this project if you need help. -Original Message- From: David Berkman david.berk...@glu.com Date: Thu, 10 Nov 2011 11:50:12 To: users@wicket.apache.org Reply-To: users@wicket.apache.org Subject: RE: wicket-dojo wrappers (correction) Sorry.

RE: wicket-dojo wrappers (correction)

2011-11-10 Thread David Berkman
All help appreciated. You can either fork the project and submit back to it, or, if you have a GitHub account, I can add you as a collaborator. David -Original Message- From: anant.a...@gmail.com [mailto:anant.a...@gmail.com] Sent: Thursday, November 10, 2011 11:53 AM To:

wicketAjaxGet and wicket 1.5 and StalePage exceptions

2011-11-10 Thread Jason Novotny
Hi, Recently converting an app from wicket 1.4.18 to wicket 1.5.2 and am now seeing stack traces like the following: org.apache.wicket.request.mapper.StalePageException at org.apache.wicket.request.handler.PageProvider.getStoredPage(PageProvider.java:302) at

Re: wicket-dojo wrappers (correction)

2011-11-10 Thread anant . asty
I do have a github account my username is anantasty I would be happy to help and would really like to write documentation etc. So it would be great if you add me as a coloborator -Original Message- From: David Berkman david.berk...@glu.com Date: Thu, 10 Nov 2011 12:03:33 To:

Modifying PageParameters

2011-11-10 Thread Jochen Mader
Hello, I am currently working on a Weld-Integration for Wicket 1.5. Got almost everything done but Conversations are giving me a headache. When navigating to another page I need to provide the conversation ID. Only at the very end of a request I am able to figure out if the conversation is valid.

IAjaxIndicatorAware/Busy Indicator Problems

2011-11-10 Thread erica.morrison
I have a custom modal window (not ModalWindow) that, upon closure, updates the grid on my home page. This processing can take 5-10 seconds and if a user tries to interact with a checkbox or link in the grid during that time, they get a component not found exception. Basically, what I'm looking

Re: Modifying PageParameters

2011-11-10 Thread Igor Vaynberg
is it more awesome then this one: https://github.com/42Lines/wicket-cdi -igor On Thu, Nov 10, 2011 at 1:22 PM, Jochen Mader pflanzenmoer...@gmail.com wrote: Hello, I am currently working on a Weld-Integration for Wicket 1.5. Got almost everything done but Conversations are giving me a

Setting Wicket to by pass DWR in filter

2011-11-10 Thread Lester K H Chua
Hi, I have done a quick search with no results so have decided to consult the hive mind. Currently I am considering using DWR to perform simple and secure JS on the front end on an existing wicket app. 1) How do i proceed to configure wicket to ignore certain URL in the wicket filter? E.g. I

Re: Setting Wicket to by pass DWR in filter

2011-11-10 Thread Igor Vaynberg
wicket filter confing in web.xml takes an ignorePaths argument which is a comma separated list of paths to ignore -igor On Thu, Nov 10, 2011 at 4:11 PM, Lester K H Chua cicowic...@gmail.com wrote: Hi, I have done a quick search with no results so have decided to consult the hive mind.

Re: inmethod grid problem in IE8

2011-11-10 Thread Duy Do
After upgrade the app to version 1.5.2, the problem has gone. Cheers, Duy On Mon, Sep 19, 2011 at 3:27 PM, Martin Grigorov mgrigo...@apache.orgwrote: Also try with IE9/10. They may give you better error description. On Sun, Sep 18, 2011 at 1:18 PM, Duy Do doquoc...@gmail.com wrote: Hi

Re: Setting Wicket to by pass DWR in filter

2011-11-10 Thread Lester K H Chua
Thanks! Got it. Regards, Lester On Nov 11, 2011, at 8:20 AM, Igor Vaynberg wrote: wicket filter confing in web.xml takes an ignorePaths argument which is a comma separated list of paths to ignore -igor On Thu, Nov 10, 2011 at 4:11 PM, Lester K H Chua cicowic...@gmail.com wrote: Hi,

Re: What is the difference between Model , PropertyModel,CompoundPropertyModel?

2011-11-10 Thread Steve Swinsburg
Hi, There is some documentation about models on the wiki: https://cwiki.apache.org/WICKET/working-with-wicket-models.html cheers, Steve On 11/11/2011, at 3:33 PM, raju.ch wrote: Could someone please explain me the difference between Model , PropertyModel,CompoundPropertyModel? -- View

Re: What is the difference between Model , PropertyModel,CompoundPropertyModel?

2011-11-10 Thread Clint Checketts
Model is like a box. It is just a container. Put your object in and get it back out. PropertyModel lets you put an object in the box and always lookup a value on that object, and set that value CompoundPropertyModel merely removes the string setting which value is pointing to the object and uses

Re: What is the difference between Model , PropertyModel,CompoundPropertyModel?

2011-11-10 Thread raju.ch
yeah..thats very good material...I've understood it..thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/What-is-the-difference-between-Model-PropertyModel-CompoundPropertyModel-tp4030452p4030480.html Sent from the Users forum mailing list archive at Nabble.com.

Re: IAjaxIndicatorAware/Busy Indicator Problems

2011-11-10 Thread Hans Lesmeister 2
Hi, you can add Javascript to the current AjaxRequestTarget in the onClose-Method of your Modal Window, i.e. like: AjaxRequestTarget.get().appendJavaScript(...) - -- Regards, Hans http://cantaa.de -- View this message in context:

Re: Modifying PageParameters

2011-11-10 Thread Jochen Mader
So much more awesome... (goes and cries in a corner) Am 11.11.2011 01:04 schrieb Igor Vaynberg igor.vaynb...@gmail.com: is it more awesome then this one: https://github.com/42Lines/wicket-cdi -igor On Thu, Nov 10, 2011 at 1:22 PM, Jochen Mader pflanzenmoer...@gmail.com wrote: Hello, I

Re: What is Dynamic Markup?

2011-11-10 Thread Martin Grigorov
What is the context ? On Fri, Nov 11, 2011 at 8:50 AM, raju.ch raju.challagun...@gmail.com wrote: Could someone please let me know about  Dynamic Markup? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/What-is-Dynamic-Markup-tp4030593p4030593.html Sent from the