Tapestry.register_form problem

2006-04-28 Thread Craig Hamilton
The line Tapestry.register_form('order'); in the below script element is causing problems for an embedded IE browser I am rendering my all in. It is difficult to explain the effects of the problem, it is in a 3rd party package which has a browser, and the error shows up later in the app. Does any

Production Error Page

2006-04-24 Thread Craig Hamilton
Hi, I am ready to move my Tapestry app to production. I want to override the error report page to something a little more user friendly. I have been searching the docs, google, etc and haven't been able to find much information. Does anyone have suggestions on the issues I have to consider with

show validation messages

2006-03-14 Thread Craig Hamilton
Hi, Is there a component that I can include in the html to show general validation messages? I have a shopping cart, and need to say the credit card is declined for instancehow do I show that on the page, not tied to a specific input box? Thanks, Craig -

RE: [OT] accessing spring in a filter

2005-10-03 Thread Craig Hamilton
Here is how I inject spring services into my filter: This example just makes the transaction manager available to the servlet filter. In your context.xml file: In your web.xml: Suspendable Transactio

how to hook up components to share state

2005-09-01 Thread Craig Hamilton
I have a QueryComponent, which is responsible for performing queries and allowing the user to select the result they with to work with. Also on the page, I have a tab control, which has components which can perform operations on the selected object from the QueryComponent. How should I hook it up

RE: redirect if visit object not populated

2005-08-31 Thread Craig Hamilton
Man, sorry...i forgot to put the throw in front of the RedirectException... It seems to work ok in terms of getting that context input screen up now. Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

RE: redirect if visit object not populated

2005-08-31 Thread Craig Hamilton
I am having a hard time getting my context input screen up. In the finishLoad method of one of my context dependent screens(call it DependentScreenA) I have the following code: PagoState state = (PagoState) getVisit(); if (state.getCurrentFacilityGroup() == null) {

redirect if visit object not populated

2005-08-30 Thread Craig Hamilton
First off, I am using tapestry 3. I have not been able to solve this in reading the documentation, or the tapestry in action book, and hope someone can help me out. There is some context information which needs to be specified before a set of pages within my app can be shown. I would like

clickable row for table

2005-08-11 Thread Craig Hamilton
Hi, I am trying to implement a table which supports the concept of having a selected row. We have this functionality in our existing homegrown framework which I have inherited, and I need to mimic while incrementally replacing it with Tapestry. They just put an onClick event on the table row.

custom form component

2005-08-08 Thread Craig Hamilton
I seem to be missing something with Parameters. I am using 3.0.3. Here is my class declaration public abstract class QueryComponent extends BaseComponent implements IFormComponent Here is the code in my renderComponent method, which I grabbed from the palette component: protected void rende