T4 - T5 vs another framework?

2007-07-13 Thread Josh Joy
Hi, I thought I would put this out here...as a caution, not trying to start any flames here, just a logical question... Currently I'm using Tapestry 4.0.2I was curious if anyone else was in the same position as I, basically I'm looking to upgrade to T5. However, considering the

T4 - T5 Guide?

2007-07-12 Thread Josh Joy
Hi, Is there a rough outline to help with migration of T4 - T5? I realize T5 may still be alpha, though I would like to begin migration as well as have a general idea of what to expect... Thanks, Josh - To unsubscribe,

Re: T4 - T5 Guide?

2007-07-12 Thread Josh Joy
Thanks Marcus. Something similar to What's changed since Tapestry 4? is helpful, though even more helpful would perhaps be a side by side comparison of what's changed between T4 and T5 with code examples. Maybe this sort of documentation is something that can start to grow in the wiki as users

Re: T4 - T5 Guide?

2007-07-12 Thread Josh Joy
to grow in the wiki as users start migrating... Sounds good, I will be doing a hefty migration from 4 to 5 soon ... so I will try to contribute to this. Please send the link thanks Peter Josh Joy wrote: Thanks Marcus. Something similar to What's changed since Tapestry 4? is helpful

Tapestry read query parameters before page rendering [T4.0]

2007-07-09 Thread Josh Joy
Hi, If I have a page like http://www.website.com/report?id=12345 and I send someone this link How can I use the information for the parameter id with arg 12345 to generate the report using the custom information I pull for this particular id? I know when dealing with forms, I can

HTML Include? [T4]

2007-05-30 Thread Josh Joy
Hi, I would like to include reusable HTML snippets which contain Tapestry code (jwcid) tags rather than build an actual component. There have been several posts that I searched through and the answer was to build a component, though I'm not sure if that will help in my case as I would like

Re: tapestry links too long for ie? [t4]

2007-05-14 Thread Josh Joy
Thanks everyone for the tips. Yes, it would be nice if tapestry generated a log warning. I was able to pull the code from SVN and compile the latest tapestry-contrib v4.0.3, though opted to persist in the session rather than client side. Thanks, Josh Jesse Kuhnert wrote: Since the size

Re: tapestry links too long for ie? [t4]

2007-05-12 Thread Josh Joy
, and Safari, and...). Could you hit me with the code generating the links (the HTML template and Java, if any) and the html of the produced links? Thanks! Ben On 5/11/07, Josh Joy [EMAIL PROTECTED] wrote: Hi, Had a question, my web page works fine in Firefox, though when viewed

tapestry links too long for ie? [t4]

2007-05-11 Thread Josh Joy
Hi, Had a question, my web page works fine in Firefox, though when viewed in Internet Explorer, none of my links workhas anyone experienced this before? Basically, the links are non clickable, so strange... Thanks, Josh -

Create error page T4.0.2

2007-04-27 Thread Josh Joy
Hi, Sorry, though I've tried looking for the documentation though I probably just missed it... If tapestry experiences an error, for example I have an invalid HTML template so it will have a parsing error, or perhaps I have an application error, Tapestry will display a very nice exception page

Rendered Time - value stored in property? (Tap 4.0.2)

2007-04-25 Thread Josh Joy
Hi, When I view my generated HTML source, I see info at the bottom such as !-- Render time: ~ 9 ms -- My question, is the value 9ms stored in some Java property that I have access to? All I'm looking to do is to log this property to a log file to track generation time. I would guess somehow I

Pass parameter as custom url, www.example.com/pic?id=12345

2007-04-09 Thread Josh Joy
Hi, For the most part, I think Tapestry is generating urls for me and with me specifying client persistence it encodes state into the url... My question is, how can I do something similar to the following www.example.com/pic?id=12345 where I can define a page pic and have a default listener

spans leaving behind extra whitespace after page generation

2007-03-29 Thread Josh Joy
Hi, I generate a lot of dynamic content using @If and @Else and @For within span tags. Within these span tags is the actual content that becomes generated. This works, no issues so far. My only concern, is that these span tags containing the jwcid with the various tags leave behind empty

Re: Directlink, works in ie thought not firefox?

2007-02-10 Thread Josh Joy
to verify that your html/css/javascript etc... are valid, especially if things work in one browser but not another. On 2/8/07, Josh Joy [EMAIL PROTECTED] wrote: Hi, I checked my tomcat configuration, and on the box I had tomcat 5 installed rather than tomcat 5.5 After reinstalling

Directlink, works in ie thought not firefox?

2007-02-08 Thread Josh Joy
Hi All, I'm having an odd situation pop up...I have a page which has several directlinks on it. The page shows search results, and the directlinks are basically new query terms, ie will basically link back to the same page just different data. Each of these directlinks invoke a listener and

Re: Directlink, works in ie thought not firefox?

2007-02-08 Thread Josh Joy
Hi, I checked my tomcat configuration, and on the box I had tomcat 5 installed rather than tomcat 5.5 After reinstalling, the problem disappeared. Thanks, Josh Josh Joy wrote: Hi All, I'm having an odd situation pop up...I have a page which has several directlinks on it. The page shows

Re: ServletContextListener equivalent in Tapestry

2006-12-28 Thread Josh Joy
org.apache.hivemind.events.RegistryShutdownListener interface and it will automatically be registered for the events by HiveMind (as long as you're not using the threaded service model). On 12/26/06, Josh Joy [EMAIL PROTECTED] wrote: Hi All, I was able to implement the below

Re: ServletContextListener equivalent in Tapestry

2006-12-26 Thread Josh Joy
Hi All, I was able to implement the below for hivemind.startup...however is there such a thing as hivemind.shutdown? I'm looking for the equivalent of contextDestroyed? Thanks, Josh James Carman wrote: You let HiveMind inject stuff into your service that runs at startup: public class

Border component, Application state object, jwcid

2006-12-17 Thread Josh Joy
Hi All, For my border component, is there a way for this to access application state objects and also to use jwcid tags such as the If component? Does anyone have an example of this? Thanks, Josh - To unsubscribe, e-mail:

MultiplePropertySelection example

2006-10-03 Thread Josh Joy
Hi All, Does anyone have an example of how to use MultiplePropertySelection ? Thanks in advance. Thanks, Josh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Tapestry Examples - workbench source code

2006-09-30 Thread Josh Joy
Hi All, I downloaded the tapestry example jboss bundle which includes the workbench example. Unfortunately, I was unable to locate the source Java code for these examples. Does anyone know where I can obtain this? Thanks, Josh

Submit Windows Print job

2006-09-28 Thread Josh Joy
Hi All, Is it possible to create a link thru tapestry such that when a user clicks it, it opens up the windows print screen dialog box? Thanks, Josh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: java.io.NotSerializableException - tapestry property

2006-09-21 Thread Josh Joy
Hi Jesse, Yes, the problem is that it's being serialized. If I properly implement java.io.Serializable on the object, then the error goes away. I'm just thinking for some reason though that I vaguely remember the Tapestry documentation mentioning this and providing 3 different solutions to

Re: Tomcat restart through tapestry

2006-09-21 Thread Josh Joy
Try looking into JMX MBeans. They provide a lot of this and other functionality. Peter Dawn wrote: guys, i have run into this problem. i am able to stop tomcat from the app. but, 1. if i have another button to start tomcat within the app, then that command is not captured as tomcat is not

java.io.NotSerializableException - tapestry property

2006-09-20 Thread Josh Joy
Hi All, Dumb question...I'm getting a java.io.NotSerializableException stack Trace: * java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1081) * java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302) * java.util.ArrayList.writeObject(ArrayList.java:569)

Submit button with listener and onclick event

2006-09-16 Thread Josh Joy
Hi All, Question about forms...I would like to have a button that has an onClick event that calls a javascript function and I would like to also set up a tapestry listener for the same button, so when the user pushes the button first the onClick function is called, next the Tapestry listener

Html include? same header and footer for each page

2006-08-25 Thread Josh Joy
Hi All, Newbie question...I would like to maintain the same header and footer for each page (basically simulate an include)...what is the recommended approach to doing this? Thanks in advance. Thanks, Josh - To unsubscribe,

Link to external application

2006-08-20 Thread Josh Joy
Hi All, I have a newbie question...in my tapestry application based on user input I am generating links to external websites, for instance the user will input their address and I would to return back to them thru html a href tags a link to the mapquest page with the map information.

Re: Link to external application

2006-08-20 Thread Josh Joy
--- Josh Joy [EMAIL PROTECTED] wrote: Hi All, I have a newbie question...in my tapestry application based on user input I am generating links to external websites, for instance the user will input their address and I would to return back to them thru html a href tags a link