Tapestry SEO URL optimization

2011-08-19 Thread tompeter
Hello, I am currently trying to optimize my Tapestry Website for SEO and have encountered some problems that I hope you can give me guidance with. I have already searched the forum but not found answers working for me. Thank you very much in advance! 1. I want to redirect all http://mysite.com to

Grid display after a new row insertion

2011-08-19 Thread TG
I noticed that if my grid is more than the maximum row that it can display, say 25 rows per page, it does not display the page that the row is inserted in. For example, say existing table consists of 50 rows (say 25 rows max per page) and I inserted the new one, the start page shows the rows at

[T5.2.6] JS: No Tapestry.FormEventManager object has been created for form

2011-08-19 Thread olip
Hi everyone, Just trying to update from 5.1 to 5.2.6. I got the following javascript error message (popups as a red bar) using a form which worked before under 5.1 (tried ff5,ff6,safari ...its in all browsers): Exception invoking function Tapestry.Initializer.validate with parameters

Re: [T5.2.6] JS: No Tapestry.FormEventManager object has been created for form

2011-08-19 Thread olip
got it to work after this tip here: http://tapestry-users.832.n2.nabble.com/Exception-invoking-function-Tapestry-Initializer-validate-tp6583272p6665025.html i had to rename my form id because there seemed to be a conflict with it. cheers, Oliver -- View this message in context:

Re: T5.3 Checklist Sample Codes

2011-08-19 Thread Igor Drobiazko
Check this out: https://builds.apache.org/job/tapestry-trunk-freestyle/javadoc/org/apache/tapestry5/corelib/components/Checklist.html On Fri, Aug 19, 2011 at 6:11 AM, TG tapestry...@hotmail.com wrote: I prefer not to use Palette component for multiple selections, I read about Checklist

Re: Grid display after a new row insertion

2011-08-19 Thread antalk
Order your grid by default on a 'date_created' column ? The newly inserted record should have the latest date so it would appear first ?! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Grid-display-after-a-new-row-insertion-tp4715298p4715531.html Sent from the Tapestry -

Re: T5.2.6 HTML 5 validation fails

2011-08-19 Thread Borut Bolčina
Thanks, with small modifications to XhtmlMarkupModel now the web app is HTML5 valid. Cheers, borut 2011/8/18 nillehammer tapestry.nilleham...@winfonet.eu Hi Borut, You can provide your custom implementation of MarkupModel to do just that. As a start look at Tapesty's DefaultMarkupModel

Re: Grid display after a new row insertion

2011-08-19 Thread TG
I have this - t:type=grid source=items t:model=beanModel and public BeanModel getBeanModel() { BeanModel model = beanModelSource.createDisplayModel(Item.class, messages); PropertyModel nameColumn =

Re: Confused by mixins render order. Bug?

2011-08-19 Thread Josh Canfield
model.addMixinClassName(Selector.class.getName(),before:*); Where is that called? Why are you doing it like that? On Wed, Aug 17, 2011 at 7:02 AM, Barry Books trs...@gmail.com wrote: I created a test page with some test mixins. The page contains t:any t:mixins=M1,M2stuff/t:any    t:form  

Netbeans 7.0 OutOfMemory Hashmap

2011-08-19 Thread George Christman
Hello, I'm getting an out of memory error when building a hashmap TapestryModule.RequestExceptionHandler Processing of request failed with uncaught exception: Java heap space java.lang.OutOfMemoryError: Java heap space at java.util.HashMap.resize(HashMap.java:462) I've tried increasing

Re: Netbeans 7.0 OutOfMemory Hashmap Resolved

2011-08-19 Thread George Christman
resolved, needed to increase maven memory. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Netbeans-7-0-OutOfMemory-Hashmap-tp4716509p4716642.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Application Scope

2011-08-19 Thread George Christman
Is there any examples on how to create my own service? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Application-Scope-tp3246646p4716830.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Application Scope

2011-08-19 Thread Robert Zeigler
See: http://tapestry.apache.org/community.html And check out the various modules and tutorials listed. Cheers, Robert On Aug 19, 2011, at 8/192:46 PM , George Christman wrote: Is there any examples on how to create my own service? -- View this message in context:

Re: Application Scope

2011-08-19 Thread George Christman
Thanks Robert -- View this message in context: http://tapestry.1045711.n5.nabble.com/Application-Scope-tp3246646p4716851.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail:

remove red cross from the field vlidator

2011-08-19 Thread leothelion
Hi all, I want to disable the red cross from the field validator and keep all other stuff. Does anyone know how to do so? By the way, I am using Tapestry 5.2.5 Thank you! -- View this message in context:

Tapestry 4 @TextField Problem

2011-08-19 Thread legacydeveloper
I am running into an issue where when I submit my form, the value in my text field is not passed to the java class when submit is clicked. However when cycle.activate() reloads the page, the value I wanted to be submitted initially is now loaded into the textfield, but if I change the value

Tapestry upload and Google App Engine

2011-08-19 Thread bhorvat
Hi all, I am sure that some of you are aware that there is a problem with the tapestry-upload component and GAE. I am working on a small (as a test website) and I will later on work on a large project and I would like to use Tapestry and have it host on the GAE. The website is pretty much over

Re: Tapestry upload and Google App Engine

2011-08-19 Thread Thiago H. de Paula Figueiredo
On Fri, 19 Aug 2011 19:51:57 -0300, bhorvat horvat.z.bo...@gmail.com wrote: Hi all, Hi! The website is pretty much over you can go and take a look at it at http://chesapool.appspot.com/ http://chesapool.appspot.com/ . One of the final things that are missing is the upload functionality.

Re: remove red cross from the field vlidator

2011-08-19 Thread Thiago H. de Paula Figueiredo
On Fri, 19 Aug 2011 19:33:47 -0300, leothelion okram...@hotmail.com wrote: Hi all, Hi! I want to disable the red cross from the field validator and keep all other stuff. Does anyone know how to do so? By the way, I am using Tapestry 5.2.5 I've never tried it, but I'm almost sure you

Re: Setting a JavaScript variable before including a JS library?

2011-08-19 Thread Lenny Primak
The component itself knows it's the variable's value at compile time. The problem is that there are many components each has a different value. Or none at all. Basically the first one that gets instantiated has to put it's value into the variable and has to be on the page before the components

Re: Tapestry 4 @TextField Problem

2011-08-19 Thread Jonathan Barker
My T4 is a little rusty, but if you post your code, I'll give it a shot. On Fri, Aug 19, 2011 at 11:20 AM, legacydeveloper bmcmil...@kcp.com wrote: I am running into an issue where when I submit my form, the value in my text field is not passed to the java class when submit is clicked.

Re: Setting a JavaScript variable before including a JS library?

2011-08-19 Thread Robert Zeigler
Yes, you can do that. The document tree that gets rendered is separate from the component tree. MarkupRenderer (the service that you configure with MarkupRenderFilters) is a pipeline, so it gives you a chance to manipulate the document tree before it is converted to text and streamed to the

Re: Setting a JavaScript variable before including a JS library?

2011-08-19 Thread Lenny Primak
I will try that out. On Aug 19, 2011, at 10:34 PM, Robert Zeigler robert.zeig...@roxanemy.com wrote: Yes, you can do that. The document tree that gets rendered is separate from the component tree. MarkupRenderer (the service that you configure with MarkupRenderFilters) is a pipeline,