Re: [8.x] form Input HTML5 form attribute?

2019-04-12 Thread nino martinez wael
Yes I am a aware, but AFAIK wicket does not support controls / input fields adjacent to forms related by the form attribute on the control. our markup looks something like this: ... wrote: > The reference to the final spec: > > https://www.w3.org/TR/html5/sec-f

Re: [8.x] form Input HTML5 form attribute?

2019-04-10 Thread Maxim Solodovnik
The reference to the final spec: https://www.w3.org/TR/html5/sec-forms.html#association-of-controls-and-forms Actually wicket do support nested forms for many years On Wed, 10 Apr 2019 at 16:05, nino martinez wael < nino.martinez.w...@gmail.com> wrote: > Hi > > I am going throug

[8.x] form Input HTML5 form attribute?

2019-04-10 Thread nino martinez wael
Hi I am going through our designers html drafts and can see they are wanting to use a hierarchical separated form from inputs.. Apparently its part of the HTML5 specification, is this something wicket supports? https://www.w3.org/TR/2011/WD-html5-20110525/association-of-controls-and-forms.html

Re: HTML5 and Bootstrap Input placeholder tag

2016-05-08 Thread David Beer
Hi Martin Thanks for this worked great. Thanks On 6 May 2016 at 20:19, Martin Grigorov wrote: > On May 6, 2016 9:05 PM, "David Beer" wrote: > > > > Hi Guys > > > > I am trying to utilise the placeholder tag in input components. So say I > >

Re: HTML5 and Bootstrap Input placeholder tag

2016-05-06 Thread Martin Grigorov
On May 6, 2016 9:05 PM, "David Beer" wrote: > > Hi Guys > > I am trying to utilise the placeholder tag in input components. So say I > have a TextField that mapps to the html placeholder="Enter Name">. How can I get wicket to add the placeholder tag > so that I can

RE: HTML5 and Bootstrap Input placeholder tag

2016-05-06 Thread Ricardo Roman Rodriguez Saldaña
sounds weird, its not my first language. > From: david.m.b...@gmail.com > Date: Fri, 6 May 2016 19:04:47 +0100 > Subject: HTML5 and Bootstrap Input placeholder tag > To: users@wicket.apache.org > > Hi Guys > > I am trying to utilise the placeholder tag in input components.

HTML5 and Bootstrap Input placeholder tag

2016-05-06 Thread David Beer
Hi Guys I am trying to utilise the placeholder tag in input components. So say I have a TextField that mapps to the html . How can I get wicket to add the placeholder tag so that I can populate via properties. Thanks David

Make wicketpath HTML5 compatible

2015-02-18 Thread Thorsten Schöning
Hi all, is there any easy way to influence the rendering of wicketpath in Wicket if isOutputComponentPath is enabled on a page or application level? I would like to change it to data-wicketpath or wicket:wicketpath or something like that to be able to validate my HTML if this attribute is

Re: Make wicketpath HTML5 compatible

2015-02-18 Thread Martin Grigorov
Hi, Yes, this is supported. But only in Wicket 7.x. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Feb 18, 2015 at 9:20 PM, Thorsten Schöning tschoen...@am-soft.de wrote: Hi all, is there any easy way to influence the rendering of wicketpath in Wicket

Re: HTML5 CSS Shapes

2015-01-27 Thread Tobias Soloschenko
and wrapped the css stuff into a small wicket component. https://github.com/klopfdreh/wicket-components-playground (Search for HTML5 Shapes) The browsers which support this functionality are listed here: http://caniuse.com/#search=shape-outside I also provided a little demo page

HTML5 CSS Shapes

2015-01-26 Thread Tobias Soloschenko
Hi everyone, I was just playing around a little bit with shape-outside and wrapped the css stuff into a small wicket component. https://github.com/klopfdreh/wicket-components-playground (Search for HTML5 Shapes) The browsers which support this functionality are listed here: http

Re: HTML5 CSS Shapes

2015-01-26 Thread Martin Grigorov
around a little bit with shape-outside and wrapped the css stuff into a small wicket component. https://github.com/klopfdreh/wicket-components-playground (Search for HTML5 Shapes) The browsers which support this functionality are listed here: http://caniuse.com/#search=shape-outside I

Re: HTML5 CSS Shapes

2015-01-26 Thread Tobias Soloschenko
playing around a little bit with shape-outside and wrapped the css stuff into a small wicket component. https://github.com/klopfdreh/wicket-components-playground (Search for HTML5 Shapes) The browsers which support this functionality are listed here: http://caniuse.com/#search=shape-outside

Re: DateTimeField or html5 date

2013-12-18 Thread Gerrit Wassink
Thanks Martin for this quick answer! Martin Grigorov mgrigo...@apache.org , 18-12-2013 8:51: Hi, Wicket just generates the final page markup. So the decision what to use depends on: what user experience you want to provide ? By using HTML5's date, datetime, ... types some browsers will show

DateTimeField or html5 date

2013-12-17 Thread gerritqf
Hello, I am using Wicket now for a couple of weeks. In my form i have some datefields. Now is my question: considering my not so experienced knowledge about Wicket, is it better to use the html5 input type=date or should i implement a DateTimeField (like the example in Wicket in Action, page 208

Re: DateTimeField or html5 date

2013-12-17 Thread Martin Grigorov
Hi, Wicket just generates the final page markup. So the decision what to use depends on: what user experience you want to provide ? By using HTML5's date, datetime, ... types some browsers will show datepicker-like widget, and other browsers won't show anything (older versions of IE). So your

Wicket and HTML5/jQuery or Dojo

2013-12-13 Thread Brown, Berlin [PRI-1PP]
Will Wicket support most of the HTML5 tags? Canvas? footer header etc? Can wicket support plug and play javascript frameworks. I asked this on reddit: http://www.reddit.com/r/java/comments/1s5tq6/what_is_the_java_serverside_response_to_html5_and/

Re: Wicket and HTML5/jQuery or Dojo

2013-12-13 Thread Martin Grigorov
Training Consulting On Fri, Dec 13, 2013 at 5:12 PM, Brown, Berlin [PRI-1PP] berlin.br...@primerica.com wrote: Will Wicket support most of the HTML5 tags? Canvas? footer header etc? Can wicket support plug and play javascript frameworks. I asked this on reddit: http://www.reddit.com

RE: Wicket and HTML5/jQuery or Dojo

2013-12-13 Thread Brown, Berlin [PRI-1PP]
Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Friday, December 13, 2013 10:21 AM To: users@wicket.apache.org Subject: Re: Wicket and HTML5/jQuery or Dojo Hi, You are a long time Wicket user so I hope you have a good answer for: How Wicket stands on your way to use canvas

Re: Wicket and HTML5/jQuery or Dojo

2013-12-13 Thread Martin Grigorov
How footer is different than div ? You can associate it with WebMarkupContainer, or with Panel. It depends what you want to do with it. https://github.com/wicketstuff/core/tree/master/jdk-1.6-parent/wicket-html5-parent provides components for some HTML5 elements. Anyone is welcome to add more

RE: Wicket and HTML5/jQuery or Dojo

2013-12-13 Thread Brown, Berlin [PRI-1PP]
@wicket.apache.org Subject: Re: Wicket and HTML5/jQuery or Dojo How footer is different than div ? You can associate it with WebMarkupContainer, or with Panel. It depends what you want to do with it. https://github.com/wicketstuff/core/tree/master/jdk-1.6-parent/wicket-html5-parent provides

html5-validation and Ajax Form Submit

2013-07-25 Thread Hans Lesmeister 2
Hi everybody, with HTML5 we now have this nice browser built in validation showing a bubble and a colored outline if a validation on a field does not pass. However if I add an AjaxSubmitLink to the form, then the html5-validation is no longer working. I have tried all kind of tricky things

Re: html5-validation and Ajax Form Submit

2013-07-25 Thread Martin Grigorov
. And the improved version at: https://github.com/code-troopers/wicket-jsr303-parsley On Thu, Jul 25, 2013 at 10:22 AM, Hans Lesmeister 2 hans.lesmeis...@lessy-software.de wrote: Hi everybody, with HTML5 we now have this nice browser built in validation showing a bubble and a colored outline if a validation

Re: html5-validation and Ajax Form Submit

2013-07-25 Thread Hans Lesmeister 2
Hi Martin, thank you for the feedback. What I really mean is the nativ html5-validation. If an input-field has the required-attribute set and the user leaves the field blank, then the browser places an outline around the field and on submit a little balloon appears with a text like Please fill

Re: html5-validation and Ajax Form Submit

2013-07-25 Thread Martin Grigorov
-software.de wrote: Hi Martin, thank you for the feedback. What I really mean is the nativ html5-validation. If an input-field has the required-attribute set and the user leaves the field blank, then the browser places an outline around the field and on submit a little balloon appears

AW: html5-validation and Ajax Form Submit

2013-07-25 Thread Hans Lesmeister
Hi, I checked that code and I would be eager to use Parsley. Parsley supports the new html5-attributes for validation but does not make use of the native form.checkValidity()-function. For that reason Parsley needs you to set the novalidate-attribute on the form, which suppresses html5

wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Hello All, According to wicketstuff rules if component does not declaring own license - it is AL. I was unable to find license for wicket-html5, but on the old project root at code.google.com/p/wickethtml5 the project is declared as GPLv2. If it is GPLv2 can anybody help me to create callback

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Martin Grigorov
Hi Maxim, WicketStuff-Html5 project is ASL2, so you can use it. On Fri, May 17, 2013 at 12:14 PM, Maxim Solodovnik solomax...@gmail.comwrote: Hello All, According to wicketstuff rules if component does not declaring own license - it is AL. I was unable to find license for wicket-html5

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Thanks a lot! On Fri, May 17, 2013 at 4:20 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi Maxim, WicketStuff-Html5 project is ASL2, so you can use it. On Fri, May 17, 2013 at 12:14 PM, Maxim Solodovnik solomax...@gmail.com wrote: Hello All, According to wicketstuff rules

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
The latest version available in maven is 1.5-rc2.1/http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/1.5-rc2.1/ 26-Mar-2011 17:31 Is it compatible with Wicket 6? On Fri, May 17, 2013 at 4:27 PM, Maxim Solodovnik solomax...@gmail.comwrote: Thanks a lot! On Fri, May 17, 2013 at 4

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Martin Grigorov
http://repo1.maven.org/maven2/org/wicketstuff/wicketstuff-html5/6.7.0/ On Fri, May 17, 2013 at 12:29 PM, Maxim Solodovnik solomax...@gmail.comwrote: The latest version available in maven is 1.5-rc2.1/ http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/1.5-rc2.1/ 26-Mar-2011 17:31

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
Thanks! was looking at http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/ :( Sorry On Fri, May 17, 2013 at 4:40 PM, Martin Grigorov mgrigo...@apache.orgwrote: http://repo1.maven.org/maven2/org/wicketstuff/wicketstuff-html5/6.7.0/ On Fri, May 17, 2013 at 12:29 PM, Maxim Solodovnik

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
(; target.add(player.setVisible(true)); Is it possible to add *AjaxBehavior* mp4download able to act as source for video? On Fri, May 17, 2013 at 5:00 PM, Maxim Solodovnik solomax...@gmail.comwrote: Thanks! was looking at http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/ :( Sorry

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Martin Grigorov
? You want to return binary data in XmlHttpRequest's response ? Yes, HTML5's XmlHttpRequest2 supports this. Check http://www.html5rocks.com/en/tutorials/file/xhr2/ On Fri, May 17, 2013 at 5:00 PM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks! was looking at http://repo1

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
as source for video? You want to return binary data in XmlHttpRequest's response ? Yes, HTML5's XmlHttpRequest2 supports this. Check http://www.html5rocks.com/en/tutorials/file/xhr2/ On Fri, May 17, 2013 at 5:00 PM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
, HTML5's XmlHttpRequest2 supports this. Check http://www.html5rocks.com/en/tutorials/file/xhr2/ On Fri, May 17, 2013 at 5:00 PM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks! was looking at http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/ :( Sorry

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Martin Grigorov
for video? You want to return binary data in XmlHttpRequest's response ? Yes, HTML5's XmlHttpRequest2 supports this. Check http://www.html5rocks.com/en/tutorials/file/xhr2/ On Fri, May 17, 2013 at 5:00 PM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Martin Grigorov
, 2013 at 5:00 PM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks! was looking at http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/ :( Sorry On Fri, May 17, 2013 at 4:40 PM, Martin Grigorov mgrigo...@apache.org wrote: http://repo1.maven.org/maven2/org/wicketstuff

Re: wicketstuff wicket-html5 license

2013-05-17 Thread Maxim Solodovnik
able to act as source for video? On Fri, May 17, 2013 at 5:00 PM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks! was looking at http://repo1.maven.org/maven2/org/wicketstuff/wicket-html5/ :( Sorry On Fri, May 17, 2013 at 4:40 PM, Martin Grigorov mgrigo

HTML5 button Javascript without a form

2012-04-10 Thread cmagnollay
, structure, and such would be much appreciated. Thank you! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/HTML5-button-Javascript-without-a-form-tp4546592p4546592.html Sent from the Users forum mailing list archive at Nabble.com

Re: HTML5 button Javascript without a form

2012-04-10 Thread Igor Vaynberg
! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/HTML5-button-Javascript-without-a-form-tp4546592p4546592.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e

HTML5 offline storage

2012-02-09 Thread nino martinez wael
Hi Have any of you tried using wicket with HTML 5 offline mode, and somehow resynching data when coming online? regards Nino

Re: HTML5 offline storage

2012-02-09 Thread robert.mcguinness
nino, i'm about to start a coding effort with offline storage and wicket. i'll keep you posted with any findings. rob -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/HTML5-offline-storage-tp4372779p4372803.html Sent from the Users forum mailing list archive

Re: HTML5 offline storage

2012-02-09 Thread nino martinez wael
Great:) 2012/2/9 robert.mcguinness robert.mcguinness@gmail.com nino, i'm about to start a coding effort with offline storage and wicket. i'll keep you posted with any findings. rob -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/HTML5-offline-storage

Re: HTML5

2011-11-01 Thread Martijn Dashorst
Read the release notes for 1.5.0. HTML 5 support was one of the main points. Martijn /me thinks the website should really be getting some priority from me. On Mon, Oct 31, 2011 at 9:21 PM, anantasthana anant.a...@gmail.com wrote: Hi, I was looking at a lot of new features of HTML5. I did see

HTML5

2011-10-31 Thread anantasthana
Hi, I was looking at a lot of new features of HTML5. I did see HTML 5 support was one of the things in the wicket wish list. Does any one have an idea of when and if wicket plans to support HTML5 ? It would be great if it did provide HTML5 support soon. -- View this message in context: http

Re: HTML5

2011-10-31 Thread Marek Šabo
Hi, HTML5 extension for wicket is in wicketstuff repisitory: https://github.com/wicketstuff/core/tree/master/jdk-1.6-parent/wicket-html5-parent I'm currently analyzing support for offline features and semantic support (microdata/scheme.org) and plan to work on it in near future. Regards

Re: HTML5

2011-10-31 Thread anantasthana
Oh good to know thanks for the good work. -Original Message- From: Marek Šabo [via Apache Wicket] ml-node+s1842946n3961497...@n4.nabble.com Date: Mon, 31 Oct 2011 13:26:24 To: anantasthanaanant.a...@gmail.com Subject: Re: HTML5 Hi, HTML5 extension for wicket is in wicketstuff

Re: HTML5

2011-10-31 Thread anantasthana
Thanks I really appreciate it ! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/HTML5-tp3961486p3961694.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail

Re: wicket 1.5 xml/doctype/html header: xhtml vs html5

2011-07-30 Thread Martijn Dashorst
You can use xhtml5 together with wicket if you like strict markup, or just plain html5. There are some (afaik undefined) rules about closing p and div tags, but other than that, (x)html5 should work. Martijn On Wed, Jul 27, 2011 at 7:04 AM, Donohoe Digital d...@donohoe.info wrote: From https

Re: wicket 1.5 xml/doctype/html header: xhtml vs html5

2011-07-30 Thread robert.mcguinness
For Wicket *1.5* I've been using: lt;!DOCTYPE htmlgt; lt;html xmlns:wicket=http://wicket.apache.orggt; -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-1-5-xml-doctype-html-header-xhtml-vs-html5-tp3698608p3706667.html Sent from the Users forum mailing list

wicket 1.5 xml/doctype/html header: xhtml vs html5

2011-07-27 Thread Donohoe Digital
=en Of these two options, which is preferred? Why would I choose the xml start (versus DOCTYPE)? Does either choice impact the use of HTML 5? Thanks, -Doug -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-1-5-xml-doctype-html-header-xhtml-vs-html5

Re: AjaxButton and HTML5 fields

2011-04-28 Thread Jeremy Levy
and Range TextFields out of the box but it is quite easy to use the other types too. To make it work in 1.4.x you'll need to use the monkey-patch approach. You can see the history of https://github.com/wicketstuff/core/tree/master/jdk-1.6-parent/wicket-html5-parent/wicket-html5

AjaxButton and HTML5 fields

2011-04-26 Thread Jeremy Levy
I've extended TextField to support some of the HTML5 variants, number, email etc. This works great when submitting via normal methods. However it doesn't work when using AjaxButton, the form data for the HTML5 fields is never POSTed. The root issue appears to be in wicket-ajax.js specifically

Re: AjaxButton and HTML5 fields

2011-04-26 Thread Martin Grigorov
the history of https://github.com/wicketstuff/core/tree/master/jdk-1.6-parent/wicket-html5-parent/wicket-html5. There is a Behavior which did exactly this before the improvements in Wicket 1.5. On Wed, Apr 27, 2011 at 1:50 AM, Jeremy Levy jel...@gmail.com wrote: I've extended TextField to support

Wicket and HTML5

2009-06-05 Thread Gabriel Kastenbaum
Hi everyone, I was watching (part of) the video about google wave and they say it is full html5. It made me think of one thing, maybe html isn't that a thing of the past... Is there any support of HTML 5 features planned for Wicket? Have a good day, Gabriel K.

Re: Wicket and HTML5

2009-06-05 Thread Igor Vaynberg
what features are you referring to? -igor On Fri, Jun 5, 2009 at 5:32 AM, Gabriel Kastenbaumgabriel.kastenb...@gmail.com wrote: Hi everyone, I was watching (part of) the video about google wave and they say it is full html5. It made me think of one thing, maybe html isn't that a thing

Re: Wicket and HTML5

2009-06-05 Thread Johan Compagner
and what browser are you planning to target... When will be the day that 50-80% of the users are using a html5 browser... On Fri, Jun 5, 2009 at 18:49, Igor Vaynberg igor.vaynb...@gmail.com wrote: what features are you referring to? -igor On Fri, Jun 5, 2009 at 5:32 AM, Gabriel