On 3 Jun 2013, at 23:22, Jens Breitenstein wrote:
> Honestly read this:
>
> http://tapestry5-jquery.com/
> and click on "usages" tab. You should not rely on sources, but classes thus
> the jar is what you want, right?
> If you use maven to build your project everything you need is explained he
Honestly read this:
http://tapestry5-jquery.com/
and click on "usages" tab. You should not rely on sources, but classes
thus the jar is what you want, right?
If you use maven to build your project everything you need is explained
here.
Furthermore the lib contains it's own BootstrapModule cla
Jan,
It looks like what is needed is the following to be added to your AppModule:
public static void
contributeComponentClassResolver(Configuration configuration) {
configuration.add(new LibraryMapping("bootstrap",
"com.trsvax.bootstrap"));
}
And then you can call the mixin "
Hello Jens,I had to copy the below mixin (from the tapestry-bootstrap plugin) into the mixins folder in my project. My problem is that I should be importing this mixin from the plugin (tapestry-bootstrap) which I already have imported in my project but I don't know how to. I guess I should be doing
Hi Mischa, hi Jan!
You mean this:
http://tapestry5-jquery.com/mixins/docstooltip
?
There is an example on the same page, too including code. Or can you
please describe what particular information you need?
Jens
Am 03.06.13 23:09, schrieb Mischa Tuffield:
Hey Jan,
I am currently looking a
Hey Jan,
I am currently looking at this stuff to, and it looks like you need to include
the following mixin somehow :
https://github.com/trsvax/tapestry-bootstrap/blob/master/src/main/java/com/trsvax/bootstrap/mixins/Tooltip.java
I am not sure how I can make use of that mixin given that I hav