Re: Frontend Frameworks / Libraries

2015-09-15 Thread Arve Klev
Hi, sorry, I have no experience with SEO. - Arve 2015-09-14 15:20 GMT+02:00 George Christman <gchrist...@cardaddy.com>: > Very nice Arve, do you have any experience making these angular pages SEO > friendly? > > On Sun, Sep 6, 2015 at 11:08 AM, Arve Klev <arvek...@gmail.com

Re: Frontend Frameworks / Libraries

2015-09-06 Thread Arve Klev
-javascript-examples In the "NgPhones"-page, I use a rest-service to retrieve data. Sincerely, Arve Klev 2015-08-10 19:59 GMT+02:00 Taha Siddiqi <tawus.tapes...@gmail.com>: > Well my way is to spend sometime on anything I find interesting... > (Usually Saturday mornings

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-10-22 Thread Arve Klev
2014-10-19 15:18 GMT+02:00 Thiago H de Paula Figueiredo thiag...@gmail.com : Awesome example, Arve! Thanks for sharing! :-) On Sat, 18 Oct 2014 13:32:08 -0300, Arve Klev arvek...@gmail.com wrote: This could be done in a much simpler way today, I think. I'm using Tapestry 5.4-beta-22

Re: [T5.4] Bootstrap and jQuery related JS libraries

2014-10-18 Thread Arve Klev
This could be done in a much simpler way today, I think. I'm using Tapestry 5.4-beta-22 and only the libraries shipped by Tapestry (Bootstrap, etc.) - love it. To use Bootstraps popover.js, a component we must initialize ourself, I only need to do this: In my Layout component (include the

Re: Proposal for a new book: Mastering Apache Tapestry

2013-08-07 Thread Arve Klev
I would like such a book, and hope that it will be based on the upcoming Tapestry 5.4-version. That way the book will be relevant regardless of Igor's book (witch I also bought). A good in-depth example of integration-testing would be nice. Regards, Arve Klev (arvek...@gmail.com)

T5: Grid and t:parameter and domain-object with getId presents strange output

2008-08-20 Thread Arve Klev
hi all, I'm presenting data from my domain-model in a grid, and run into some odd behavior in this circumstances: From the domain-model - Person.java: public class Person implements Serializable, ComparablePerson { ... private String id; public String

Re: T5: Grid and t:parameter and domain-object with getId presents strange output

2008-08-20 Thread Arve Klev
be trying to filter the .tml file before Jetty deploys it; if possible, switch to an exploded WAR format and see exactly what file is in the exploded WAR ... it may not be what's in your workspace. On Wed, Aug 20, 2008 at 6:28 AM, Arve Klev [EMAIL PROTECTED] wrote: hi all, I'm presenting

Re: T5: external POST link to spring security

2008-07-14 Thread Arve Klev
I have integrated Spring Security 2.0 with Tapestry5 - and it's easy to do and much less configuration than with formerly acegi. (I also use T5, Spring's latest version and Tapestry-Spring :-) ) I had the same problem as Pavla: override the default login-page (it works) from spring-security with

Re: Does Tapestry5 support Portlets specs JSR168 and 286

2007-12-30 Thread Arve Klev
My vote is to portlet in T5. Sincerely, Arve Klev 2007/12/29, Jan Vissers [EMAIL PROTECTED]: Add me to the portlet petition; Me too! Add me to the portlet petition; we're about to start development on a portal with Liferay and it would be great to have portlet support in T5

Re: [T5] : tapestry + spring

2007-12-26 Thread Arve Klev
T5 + Spring is in my opinion a very good choose. I let Spring integrate ORM (Hibernate, JDBC, TopLink, etc). sincerely, Arve Klev 2007/12/24, Mohammad Shamsi [EMAIL PROTECTED]: Hi All, i want to start new Java EE projecct, Formerly we used Spring + Struts in our projects. after about 4

Re: [T5] using nbsp; in template

2007-12-16 Thread Arve Klev
I put this line at the top of the template: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd and then nbsp; (among others) can be used. Arve Klev 2007/12/16, Matt Brock [EMAIL PROTECTED] : Sven Homburg-2 wrote

Re: T5: Grid component, reorder and empty source

2007-11-16 Thread Arve Klev
pageLoaded() { _model = _beanModelSource.create(Person.class, false, _resources); } Is this the right way to inform the grid component to use the Person.class ? thanks, Arve Klev 2007/11/13, adamh [EMAIL PROTECTED]: I'm seeing the same behaviour, if my source is empty and I use

Re: T5: Grid component, reorder and empty source

2007-11-16 Thread Arve Klev
yes, it works fine. 2007/11/16, Joshua Jackson [EMAIL PROTECTED]: On 11/16/07, Arve Klev [EMAIL PROTECTED] wrote: hi, as a novice in regards to Tapestry, I first thought it was a bug, but at last I tried to supply a beanmodel, and everything is fine (obvious to others, I think). I

Re: T5: Grid component, reorder and empty source

2007-11-16 Thread Arve Klev
Hi Marcus, Thanks, thats easier. Arve 2007/11/16, Marcus [EMAIL PROTECTED]: Hi Arve, We're using an if, to display grid only when it has data. Like this: Test.java: ... public boolean getHasDataToGrid1() { return (_listGrd1.size() 0); } ... Test.tml ... t:if test=hasDataToGrid1

T5: Grid component, reorder and empty source

2007-11-10 Thread Arve Klev
is 5.0.6.) thanks, Arve Klev

Tapestry portlet calling Spring-services?

2006-12-01 Thread Arve Klev
property=facade object=facade/ public abstract BusinessFacade getFacade(); BUT; is it an easy way to set up a Tapestry portlet that is calling services in Spring? (support for Tapestry portlets is deferred to a later release - tapestry-spring) Thanks, Arve Klev