Re: How to disable bootstrap label/button hover behavior?

2013-02-20 Thread Ivan Khalopik
// Hover/focus state, but only for links a { &.label:hover, &.label:focus, &.badge:hover, &.badge:focus { color: @white; text-decoration: none; cursor: pointer; } } This lines are from the latest bootstrap sources. It adds hover behaviour only for links with label/badge clas

RE: css layout problems, strange runtime behavior - help

2013-02-20 Thread Ken in Nashua
Manu, I noticed your tapestry tab and menu widgets on occasion (and maybe due to performance) fail to render... and resort to the fabricated html tags modeling links instead of the actual widget. This happened on my i7QuadCore but consistently on my Droid III running linux. My Gallery Widget

Re: deployment of images

2013-02-20 Thread George Ludwig
Ken, >But my app fails because somehoe the images for the tapestry component never made it. they dont exist inside my war file. This is a maven issue...you need to configure it to include the images. Your pom should have something like this in it: src/main/resources **/*.png

RE: deployment of images

2013-02-20 Thread Ken in Nashua
Thanks Bob... that worked out terrific.

Re: deployment of images

2013-02-20 Thread Robert Hailey
On 2013/02/20 (Feb), at 8:32 PM, Ken in Nashua wrote: > In the component directory I also put my button images for the component. Ordinarily, the images would go along with the "context path" rather than the class/java/tml files. For example, if I am building a component here: src/main/java/m

deployment of images

2013-02-20 Thread Ken in Nashua
Folks, I designed a component. In the component directory I also put my button images for the component. I build using maven and it all gets packaged up in a war I copy my war to tomcat webapps dir But my app fails because somehoe the images for the tapestry component never made it. they don

Re: 3 days of ValueEncoder-ing, no coercion found

2013-02-20 Thread mvchris
I took it out when doing my side-project testing. The findAll() works without a ValueEncoder, yet the other query does not. Here is a ValueEncoder I have used but no luck. Why does findAll() work without a value encoder and the other one doesn't? This part seems irregular. /* * To change this

Re: Spinner - Prototype to JQuery (ie tapestry5-jquery)

2013-02-20 Thread bhorvat
So the jquery code conversion is something I can figure out on my own but I am having hard time with this part $(document.body).on(Tapestry.TRIGGER_ZONE_UPDATE_EVENT, addAjaxOverlay); so in prototype this would return function addAjaxOverlay(event, element) { var mgr = Tapestry.findZoneManager

Re: How to disable bootstrap label/button hover behavior?

2013-02-20 Thread George Ludwig
What approach did you take to the over ride? AFAIK, I would need to over ride a lot of CSS in order to remove that functionality for all the badge and label types. For now, I did my over ride in the page CSS, but it's only. Thankfully, I'm only using one badge and one labelfor now at least.

Re: 3 days of ValueEncoder-ing, no coercion found

2013-02-20 Thread Thiago H de Paula Figueiredo
On Wed, 20 Feb 2013 18:25:28 -0300, mvchris wrote: Hi Thiago et al, Sure can, what follows is the template, page class, session bean, implementation and entity with named queries. You didn't explicitly provided a ValueEncoder to your source. Could you please try that? -- Thiago H. de Pau

Re: 3 days of ValueEncoder-ing, no coercion found

2013-02-20 Thread mvchris
nabble ate my template, hopefully the raw tag works. -- View this message in context: http://tapestry.1045711.n5.nabble.com/3-days-of-ValueEncoder-ing-no-coercion-found-tp5720109p5720131.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: 3 days of ValueEncoder-ing, no coercion found

2013-02-20 Thread mvchris
Hi Thiago et al, Sure can, what follows is the template, page class, session bean, implementation and entity with named queries. I discovered this behaviour when I ripped this stuff out into a side project and made a mock list of objects to display...and it worked. Note that there are no complex

Re: and Bootstrap's collapse menu

2013-02-20 Thread Tobonaut
Hi, wow, thanks a lot for this explanation! You helped me a lot. :) Good Night, - Tobi On Feb 20, 2013, at 6:28 PM, rnicholus [via Tapestry] wrote: > Yep, this is probably the same problem I ran into a while ago. I build a > jQuery plug-in to deal with these types of issues when Prototype a

Re: and Bootstrap's collapse menu

2013-02-20 Thread rnicholus
Yep, this is probably the same problem I ran into a while ago. I build a jQuery plug-in to deal with these types of issues when Prototype and jQuery coexist. It's called "jquery-prototype-custom-event-bridge", and can be found at https://github.com/Widen/jquery-prototype-custom-event-bridge. Aft

RE: css layout problems, strange runtime behavior - help

2013-02-20 Thread Ken in Nashua
Thanks Manu, I have sources checked out built and integrated. I commented out your overload's for bow tie PNG and its brother PNG You can change those though to your own specialized overload instead of impacting all the users css usage. But I am greatful there is source code I can build with

Re: and Bootstrap's collapse menu

2013-02-20 Thread Tobonaut
Hi, this happens on safari, mobile safari, firefox and chrome if i resize the browsers to a "smartphone" size. Other point: My jQuery isn't working if i define the function above the zone. If i move the function behind the t:zone, it will work -- or vice versa, sorry i don't have the code in fro

Re: and Bootstrap's collapse menu

2013-02-20 Thread rnicholus
I ran into a similar problem when using Bootstrap in T5. I fixed it, but before I waste your time with a long explanation of the problem and the fix, can you answer the following? Is this reproducible in all browsers? Does this only happen when the menu is toggled via the "three lines" menu bar

and Bootstrap's collapse menu

2013-02-20 Thread Tobonaut
Hi, if I have a in a page template, my Twitter Bootstrap (responsive) 'collapse menu' won't work. :( It will show up once but after that, no more collapsing. The collapsing method uses a data-toggle paramter [1] to show or hidethe menu. FYI: I use jQuery with noConflict(); Thanks for your help!

RE: css layout problems, strange runtime behavior - help

2013-02-20 Thread Ken in Nashua
Well it seems I cannot just freely use any HTML tags with kawwa Their theme seems to unknowingly overload HTML tags if i operate then I will implicitly get a bowtie.png show up nearby on the user interface. This is frightening because if they are overloading other tags and then operating posi

Re: 3 days of ValueEncoder-ing, no coercion found

2013-02-20 Thread Thiago H de Paula Figueiredo
On Wed, 20 Feb 2013 09:54:15 -0300, mvchris wrote: Whether I use a grid or a loop, my EJB findAll() method which returns all records - it displays the records without a problem. If I use my getDistinct() method, I get the no coercion error. This may be related to the JPA implementation return

Re: How to disable bootstrap label/button hover behavior?

2013-02-20 Thread trsvax
I think the hover behavior was added in a latter version of 2.x bootstrap than is included by default in the bootstrap module. I usually just include the latest css and then override the parts I want to change in the layout.tml file. -- View this message in context: http://tapestry.1045711.n5.n

Re: 3 days of ValueEncoder-ing, no coercion found

2013-02-20 Thread mvchris
Noted the use of DefaultProvider where grid's is optional. And yes, I remember reading a million times not to do what I posted - thanks for highlighting that! -- View this message in context: http://tapestry.1045711.n5.nabble.com/3-days-of-ValueEncoder-ing-no-coercion-found-tp5720109p5720119.ht

Re: 3 days of ValueEncoder-ing, no coercion found

2013-02-20 Thread mvchris
OK - I have some peculiar repeatable behaviour... (no use of value encoder for testing and my findAll() works but smaller subset of results, still List object used for source) Whether I use a grid or a loop, my EJB findAll() method which returns all records - it displays the records without a pro

Re: 3 days of ValueEncoder-ing, no coercion found

2013-02-20 Thread Thiago H de Paula Figueiredo
On Wed, 20 Feb 2013 01:49:36 -0300, Chris Mylonas wrote: Hi Tapestry List, long time no hear... Hi! Welcome back! There are no lmevents to display; you can add some manually when the link is made. Have you checked in the Tapestry err

Re: ajaxformloop doesn't refresh after remove

2013-02-20 Thread John
ah, the jumpstart example works fine, although if you click in the component while a remove is animating it crashes? - Original Message - From: John To: users@tapestry.apache.org Sent: Wednesday, February 20, 2013 10:51 AM Subject: ajaxformloop doesn't refresh after remove

Re: [t5.3.6] Constructing Forms from Maps

2013-02-20 Thread Lance Java
I'm on holiday at the moment so can't update the example, I'll update it when I'm back. In the meantime this should help tapestry.1045711.n5.nabble.com/how-to-recordError-against-a-form-field-in-a-loop-td5719832.html -- View this message in context: http://tapestry.1045711.n5.nabble.com/t5-3-