Re: tapestry5.3 and Twitter-bootstrap disabled inputs

2013-03-06 Thread Ivan Khalopik
[mailto:ikhalo...@gmail.com] >> Sent: Tuesday, March 05, 2013 3:34 AM >> To: Tapestry users >> Subject: Re: tapestry5.3 and Twitter-bootstrap disabled inputs >> >> You can use span element with .uneditable-input if you have some field that >> should not be modified

RE: tapestry5.3 and Twitter-bootstrap disabled inputs

2013-03-05 Thread Tony Nelson
> -Original Message- > From: Ivan Khalopik [mailto:ikhalo...@gmail.com] > Sent: Tuesday, March 05, 2013 3:34 AM > To: Tapestry users > Subject: Re: tapestry5.3 and Twitter-bootstrap disabled inputs > > You can use span element with .uneditable-input if you have som

Re: tapestry5.3 and Twitter-bootstrap disabled inputs

2013-03-05 Thread Ivan Khalopik
You can use span element with .uneditable-input if you have some field that should not be modified at all. Some value here If you need some client-side behaviour of enable/disable component use disabled attribute as mentioned earlier. Or: On Mon, Mar 4, 2013 at 3:33 PM, Lance Java wrote:

Re: tapestry5.3 and Twitter-bootstrap disabled inputs

2013-03-04 Thread Lance Java
You can add and remove classes in javascript. For example, in jquery: http://api.jquery.com/addClass/ http://api.jquery.com/removeClass/ -- View this message in context: http://tapestry.1045711.n5.nabble.com/tapestry5-3-and-Twitter-bootstrap-disabled-inputs-tp5720319p5720326.html Sent from the

Re: tapestry5.3 and Twitter-bootstrap disabled inputs

2013-03-04 Thread Jay Ginete
Thanks Peter but I have found a solution for presenting uneditable data. It was right in the bootstrap forms page ( http://twitter.github.com/bootstrap/base-css.html#forms). Some value here There's a small problem with this though, I can't disable or enable the textfield with javascript on the fl

Re: tapestry5.3 and Twitter-bootstrap disabled inputs

2013-03-04 Thread Peter Wendorff
Hi. probably disabled="disabled" is a solution that works? The standalone, unvalued attributes are a html5 (and old html) syntax element. Tapestry templates are well formed XHTML and therefore XML documents. In XML every attribute has a value, which produces that parsing error, I think. The