Re: Tapestry-5.4-alpha-2 css overriding

2013-02-09 Thread Lance Java
FYI, I found it necessary to add the following to my Layout component @Import(stack="core") Otherwise the bootstrap CSS was only included if I had a on my page. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-4-alpha-2-css-overriding-tp5719856p5719906.html Se

Re: Tapestry-5.4-alpha-2 css overriding

2013-02-09 Thread Steve Eynon
There are few T5.4-a2 components (that I seem to use) that pull in the core stack which then imports the bootstrap.css. Alerts is one of them, which I've Munky Patched not to. You're then free to import whatever CSS you want in whatever order as per usual. Another option (which I also do to keep t

Re: Tapestry-5.4-alpha-2 css overriding

2013-02-09 Thread Lance Java
If I was to take a guess, it would be the new usage of require.js in tapestry 5.4. Tapestry has defined a bootstrap module. You might need to define a module which depends on the bootstrap module to guarantee that yours is loaded after bootstrap. As I said, this is a guess... I've not yet dug too

Re: Tapestry-5.4-alpha-2 css overriding

2013-02-08 Thread Matías Blasi
, 2013 at 5:23 PM, Matías Blasi wrote: > Hi all, > > I'm using Tapestry-5.4-alpha-2 in a new project, and I am not beeing able > to override some bootstrap.css definitions. > > I'm @Importing my custom stylesheet in my Layout component, but it > included before boots

Re: Tapestry-5.4-alpha-2 css overriding

2013-02-08 Thread Lance Java
Note that @Import does not need to be used at the class level. You can specify @Import on one of the later render phases, eg: afterRender() -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-4-alpha-2-css-overriding-tp5719856p5719863.html Sent from the Tapestry -

Re: Tapestry-5.4-alpha-2 css overriding

2013-02-07 Thread René Bernhardsgrütter
Hi Matias, does it work, if you include the stylesheet manually via at the end of the HTML head? I'm not yet using T5.4, so I don't know if this works, but you could try, just as workaround for the moment. René On 07.02.2013 21:23, Matías Blasi wrote: > Hi all, > > I&#

Tapestry-5.4-alpha-2 css overriding

2013-02-07 Thread Matías Blasi
Hi all, I'm using Tapestry-5.4-alpha-2 in a new project, and I am not beeing able to override some bootstrap.css definitions. I'm @Importing my custom stylesheet in my Layout component, but it included before bootstrap one, and the bootstrap.css overrides mine... How could

Re: Can't get Tapestry 5.4-alpha-2 jQuery Support to work

2013-01-13 Thread Serge Eby
Surprisingly, I don't get Prototype. Are you sure you are using the "official" 5.4-alpha-2 and not a local build? FWIW, I have the following in my Layout component (as I use bootstrap): @Import( stack = { InternalConstants.CORE_STACK_NAME }, stylesheet = { "${tapestry.bootstrap-root}/cs

Re: Can't get Tapestry 5.4-alpha-2 jQuery Support to work

2013-01-12 Thread trsvax
I commented out the line to see if the the "jquery" line was working. The Scriptaculous Trait only applies for prototype and that's exactly what happens. If I set SymbolConstants.JAVASCRIPT_INFRASTRUCTURE_PROVIDER,"jquery" the Scriptacolous trait does nothing. With SymbolConstants.JAVASCRIPT_I

Re: Can't get Tapestry 5.4-alpha-2 jQuery Support to work

2013-01-12 Thread Serge Eby
Hi, For 5.4-alpha-2, I believe you still need to disable Scriptaculous when using JQuery (it's fixed in alpha-3). I see that you commented out this line: // not needed with jquery configuration.add(Trait.SCRIPTACULOUS, false); Is it not working when uncommented? /Serge -- View t

Can't get Tapestry 5.4-alpha-2 jQuery Support to work

2013-01-12 Thread trsvax
I created a project with alpha-2 in my POM and followed the blog post http://tapestryjava.blogspot.com/2013/01/tapestry-54-jquery-support-now-in-place.html by adding this to my AppModule @Contribute(SymbolProvider.class) @ApplicationDefaults public static void contributeApplicationDe

Re: Tapestry 5.4-alpha-2

2013-01-07 Thread Lance Java
Hi Howard, I'm using the 5.4-alpha-2 and it would be nice if the errors component used the "alert-error" class from bootstrap instead of t-error. Something like http://bootsnipp.com/snipps/simple-login-form. Cheers, Lance. -- View this message in context: http://tapestry.1045711.n5.nabble.com/

Re: Tapestry 5.4-alpha-2

2013-01-03 Thread Howard Lewis Ship
I'll see what I can do. My goal was to change TapestryFilter to be easier to override or replace. I think the feature you were depending on was one that I was not aware of! On Thu, Jan 3, 2013 at 4:59 PM, Kristian Marinkovic < kristian.marinko...@gmail.com> wrote: > hi Howard, > > i am already

Re: Tapestry 5.4-alpha-2

2013-01-03 Thread Kristian Marinkovic
hi Howard, i am already testing and exploring the possibilities. Would you consider fixing https://issues.apache.org/jira/browse/TAP5-2040 as a 5.4-alpha-3? g, Kris On Thu, Jan 3, 2013 at 11:01 PM, Howard Lewis Ship wrote: > I've created a new preview release, available from the Maven reposi

Tapestry 5.4-alpha-2

2013-01-03 Thread Howard Lewis Ship
I've created a new preview release, available from the Maven repository at https://repository.apache.org/content/repositories/orgapachetapestry-096/ this includes the new jQuery support I recently blogged about. Feedback desperately desired! -- Howard M. Lewis Ship Creator of Apache Tapestry