Re: Downloading content from tapestry.apache.org

2012-09-11 Thread mailingl...@j-b-s.de
wget ? http://www.gnu.org/software/wget/ Sent from my iPhone On 12.09.2012, at 01:32, Jay Ginete wrote: > On 9/12/2012 7:07 AM, ZiciuM wrote: >> How to download all tutorials, references, docs from apache.tapestry.org so >> that I can work in offline mode? >> >> >> >> -- >> View this messag

Re: Downloading content from tapestry.apache.org

2012-09-11 Thread Jay Ginete
On 9/12/2012 7:07 AM, ZiciuM wrote: How to download all tutorials, references, docs from apache.tapestry.org so that I can work in offline mode? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Downloading-content-from-tapestry-apache-org-tp5716215.html Sent from the Tap

Downloading content from tapestry.apache.org

2012-09-11 Thread ZiciuM
How to download all tutorials, references, docs from apache.tapestry.org so that I can work in offline mode? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Downloading-content-from-tapestry-apache-org-tp5716215.html Sent from the Tapestry - User mailing list archive at N

Re: how to refresh page zone inside a component

2012-09-11 Thread Lance Java
Lets assume you are writing a LinkTree component which accepts a LinkTreeModel parameter. LinkTreeModel has a visitAll method which takes a LinkNodeVisitor. You could do something like this (not tested) LinkTree.tml --- ${linkLabel} LinkTree.java - public class LinkTree

Re: updating from 5.3.1 to 5.3.5

2012-09-11 Thread sommeralex
thx... 2012/9/11 Kalle Korhonen-2 [via Tapestry] < ml-node+s1045711n5716211...@n5.nabble.com> > On Tue, Sep 11, 2012 at 10:31 AM, sommeralex <[hidden > email]> > wrote: > > and what does this mean? > > tapestry core only exists as 5.3.4 > > h

Re: T:Grid with fixed header!

2012-09-11 Thread arterzatij
Hi all, How I can avoid sorting on grid component for all columns thanks in advance! -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-Grid-with-fixed-header-tp5716187p5716212.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: updating from 5.3.1 to 5.3.5

2012-09-11 Thread Kalle Korhonen
On Tue, Sep 11, 2012 at 10:31 AM, sommeralex wrote: > and what does this mean? > tapestry core only exists as 5.3.4 > http://mvnrepository.com/artifact/org.apache.tapestry/tapestry-core It means that mvnrepository, a random third party tool, has not yet pulled the latest indexes from central. htt

Re: updating from 5.3.1 to 5.3.5

2012-09-11 Thread Dragan Sahpaski
On Tue, Sep 11, 2012 at 7:31 PM, sommeralex wrote: > and what does this mean? > > tapestry core only exists as 5.3.4 > > http://mvnrepository.com/artifact/org.apache.tapestry/tapestry-core Here is the maven central link to 5.3.5 http://search.maven.org/#artifactdetails%7Corg.apache.tapestry%7Ctap

Re: updating from 5.3.1 to 5.3.5

2012-09-11 Thread sommeralex
and what does this mean? tapestry core only exists as 5.3.4 http://mvnrepository.com/artifact/org.apache.tapestry/tapestry-core 2012/9/11 Kalle Korhonen-2 [via Tapestry] < ml-node+s1045711n5716208...@n5.nabble.com> > On Tue, Sep 11, 2012 at 8:51 AM, Lance Java <[hidden > email]

Re: updating from 5.3.1 to 5.3.5

2012-09-11 Thread Kalle Korhonen
On Tue, Sep 11, 2012 at 8:51 AM, Lance Java wrote: > Type the following at the command line to get a better idea of what's going > on: >> mvn dependency:tree > Most likely, you will find that one of your dependencies is bringing in the > old tapestry version. You might need to add an exclusion [1]

Re: updating from 5.3.1 to 5.3.5

2012-09-11 Thread sommeralex
thx se.unbound:tapestry-breadcrumbs:jar:1.9:compile -- View this message in context: http://tapestry.1045711.n5.nabble.com/updating-from-5-3-1-to-5-3-5-tp5716200p5716207.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: how to refresh page zone inside a component

2012-09-11 Thread leandroaispuru
Sorry, but i do not understand how the RenderCommand can help me creating eventLinks that generates ajax requests to update a zone. Can you give me an example or more info? Thank you again, Leandro 2012/9/11 Lance Java > You don't need to use the markup writer to generate recursive content. Y

Re: AjaxFormLoop

2012-09-11 Thread arterzatij
Fixed thansk for all! The problem was in the encoder object, I was requesting information to the db instead of the object flashed on the page. -- View this message in context: http://tapestry.1045711.n5.nabble.com/AjaxFormLoop-tp5716130p5716205.html Sent from the Tapestry - User mailing list a

Re: how to refresh page zone inside a component

2012-09-11 Thread Lance Java
You don't need to use the markup writer to generate recursive content. You can return a RenderCommand from any render phase method. Note also that injected Blocks (or Block parameters) can be type coerced to a RenderCommand. -- View this message in context: http://tapestry.1045711.n5.nabble.

Re: updating from 5.3.1 to 5.3.5

2012-09-11 Thread Lance Java
Type the following at the command line to get a better idea of what's going on: > mvn dependency:tree Most likely, you will find that one of your dependencies is bringing in the old tapestry version. You might need to add an exclusion [1]. [1] http://maven.apache.org/guides/introduction/introduct

Re: how to refresh page zone inside a component

2012-09-11 Thread leandroaispuru
The line System.out.println("*ES AJAX: "+request.isXHR()); is always printing false. Because the event link rendered with markupWriter does not add the "Tapestry.init linkzone" to javascript code. 2012/9/11 > Hi! > > I am facing some problems with an own component. This component renders

how to refresh page zone inside a component

2012-09-11 Thread leandroaispuru
Hi! I am facing some problems with an own component. This component renders some eventLinks with the use of componentResources and markupWriter. I have included this component in a page with a zone near it that must show some info based on the eventLink of the component clicked. I want only the zo

updating from 5.3.1 to 5.3.5

2012-09-11 Thread sommeralex
Hello! I have an error and wanted to debug it, but being in the debugging mode got me another error which showd me that i am not running 5.3.5. The first thing which is strange is that the VERSION which is being reported in the tapestry error log in my browser is showing an OLD tapestry version. 5

Re: Ajax Upload for Tapestry

2012-09-11 Thread Ray Nicholus
Yikes, that is really, REALLY old code, as far as the uploader js library is concerned. I'm afraid you won't find much support for such an old version of that library. The file-uploader js library, now called Fine Uploader lives on the valums/file-uploader github project page at https://github.co

Re: Ajax Upload for Tapestry

2012-09-11 Thread Taha Siddiqi
Instead of using @RequestParameter, @Inject Request and use request.getParameter("serverIndex") I have used it with IE6 and IE7 and it worked. Not sure what the error can be particularly with IE :) WIth IE I debug less and pray more :) Regards Taha On Sep 11, 2012, at 5:16 PM, Amr Mohamed Ma

Re: How to use a html url tag in a form error message

2012-09-11 Thread Lance Java
There's an outstanding jira for this here https://issues.apache.org/jira/browse/TAP5-1863 -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-to-use-a-html-url-tag-in-a-form-error-message-tp5716196p5716197.html Sent from the Tapestry - User mailing list archive at Nabble.

How to use a html url tag in a form error message

2012-09-11 Thread captain_rhino
In an eror mesage for a form I would like to use within the error message the following text To correct error message please *click here* to complete the journey Unfortunatley all the special characters are escaped. I have used the t:outputraw component to previously wrap stuff. Is there a way

RE: Ajax Upload for Tapestry

2012-09-11 Thread Amr Mohamed Mahmoud Hassanien
Hi Ray, Thanks for your reply. 1.For the first point, I get this error on click remove for any attachment. "Communication with the server failed: Request event 'removeupload' (on component video/Submit:uploads) was not handled; you must provide a matching event handler method in the component

Re: T:Grid with fixed header!

2012-09-11 Thread antalk
Hi, I've made a component library which has such a Grid, see: http://intercommitweavesdemo.intercommit.cloudbees.net/grid/pagedgrid2demo Unfortunately the code on github is not really up-to-date anymore, i can try to update the github code this week. Antal -- View this message in context: h

Get component in overrides

2012-09-11 Thread Dimitris Zenios
Is there a way to get the current component inside block overrides?I would like to show something different if its a grid component.Injecting componentResouirces and getting component returns NULL.Any other way? - To unsubscribe,

Re: T:Grid with fixed header!

2012-09-11 Thread Lance Java
Unfortunately, this needs to be done via javascript which splits the table into two tables. The data table is put into a scrolling div with a fixed height. Here's an example: http://www.tablefixedheader.com -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-Grid-with-fixe

T:Grid with fixed header!

2012-09-11 Thread ngocquy_ytc
Hi all! I have a sorted grid with 3 columns! I want to fix the header on grid when scrolling (in case the content is too long). Have you any solution to solve it? Thanks for help! -- View this message in context: http://tapestry.1045711.n5.nabble.com/T-Grid-with-fixed-header-tp5716187.html S