Re: Why tapestry 4.0.xxx application CANNONT deploy in WEBSPHERE!!!!

2006-11-17 Thread Craig St Jean
Using RAD with WebSphere 6.0.2.13 I did the following: Create new EAR Select adding support for Java annotations Import J2EE Utility Jars into the EAR (select to link them and select your Tapestry JARs) Do not include commons-logging, its included in the WebSphere Runt

Re: Why tapestry 4.0.xxx application CANNONT deploy in WEBSPHERE!!!!

2006-11-17 Thread Craig St Jean
What version of WebSphere are you using? Also are you using just plain WebSphere or are you using RAD/RSA (and which version). On Nov 17, 2006, at 6:27 PM, jone wrote: hi, My app could deploy in tomcat and resin ,but FAILED in websphere with the following exception: javax.servlet.ServletE

Why tapestry 4.0.xxx application CANNONT deploy in WEBSPHERE!!!!

2006-11-17 Thread jone
hi, My app could deploy in tomcat and resin ,but FAILED in websphere with the following exception: javax.servlet.ServletException: Could not load class org.apache.tapestry.html.BasePage . I don't know why!Could somebody help me? jone -

Re: handle on component's enclosed components

2006-11-17 Thread D&J Gredler
AbstractComponent#getBody( ) maybe? On 11/17/06, Mike Oestereter <[EMAIL PROTECTED]> wrote: Yes,yes I know Tapestry has an API - I just don't know it that well! I am NOT looking for the nested or the contained components of a page/component. I'm specifically looking for only the components th

Re: handle on component's enclosed components

2006-11-17 Thread Mike Oestereter
Yes,yes I know Tapestry has an API - I just don't know it that well! I am NOT looking for the nested or the contained components of a page/component. I'm specifically looking for only the components that is in the body part of a surrounding component (rendered by a @RenderBody of Main using my e

Re: Dynamic Validator Parameters

2006-11-17 Thread Daniel Tabuenca
This would work for custom validators. What I want to know is how can I bind values to the standard validators such as specifying the maximum length of a string or the max value of an integer using existing validators but just get the actual numeric constraint from a property rather than hard-codi

Re: Dynamic Validator Parameters

2006-11-17 Thread Christian Dutaret
Actually it is validators=validators:$maxBean Then in your bean's validate(...), you can access any page property that way: YourPage page = (YourPage) field.getPage(); YourPropertyType value = page.getYourProperty(); 2006/11/17, Jesse Kuhnert <[EMAIL PROTECTED]>: Define the max validator clas

Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-17 Thread Josh Long
Also, fwiw, I'm more than content to just build a custom tapestry edition and modify the dojo thats included in that particular process. That would also solve my issue with making the various tapestry files i use part of the build as well: i can just modify your working profile and modify your doj

Re: Images aren't showing up if I create my own dojo build and then instruct tapestry to use that.i

2006-11-17 Thread Josh Long
OK I just got a chance to dig back into this very problematic issue-- unfortunately the issue is still present. No images for the drop down or anything... I svn updated my dojo build and used it to build a new release/profile/edition/blah of dojo. I copied the resulting release directory into a r

RE: Tapestry Dialog Component Problem 4.1.1

2006-11-17 Thread Peter Beshai
Binding for parameter hidden (ExpressionBinding[frontend/Taetigkeitserfassung true]) may not be updated. Generally when that happens, it means that you have bound a constant to the parameter hidden when you defined the component. Try binding hidden to a property instead. For instance @Compon

Re: handle on component's enclosed components

2006-11-17 Thread Karthik N
Look at the API docs http://tapestry.apache.org/tapestry4/tapestry/apidocs/index.html AbstractPage has getNestedComponent AbstractPage extends AbstractComponent that has getComponents() HTH On 11/17/06, Mike Oestereter <[EMAIL PROTECTED]> wrote: Hi Say I've got the following on a template

Re: Tapestry Dialog Component Problem 4.1.1

2006-11-17 Thread Stefan Esterer
Hi.. I have a similar problem.. can anybody lend us a helping hand? greetz Stefon Tine wrote: > > Hi Guys... > > I try to use the new Dialog component. > I have a directLink which binds to this methood: > > public void editTime(){ > Dialog dialog = ((Dialog)getComponent("addTi

handle on component's enclosed components

2006-11-17 Thread Mike Oestereter
Hi Say I've got the following on a template page where Main and Sub are components.. html more html Is there a way to get in Main's class a handle on all the Sub components enclosed by Main without adding an explicit reference in each Sub to Main? Many thanks Mike ---

Ajax, For-Loops and PropertySelections

2006-11-17 Thread Patrick Klein
Hi! I'm trying to use Ajax to update the content of a for-loop containing PropertySelections. The template for the table i want to update looks like this: updateComponents="ognl:updateComponents"> Test Result Target value="ognl:dat

Re: what about MVFLEX (replacing ognl)

2006-11-17 Thread Roberto Ramírez Vique
Hello ! There is also another project : http://howardlewisship.com/tapestry-javaforge/tapestry-prop/ I think Tapestry 5 is going to use it. Here you have a comparation between ognl and prop.: http://howardlewisship.com/blog/2006/11/improve-tapestry-performance-with.html On 11/17/06, xVik <[E

Tapestry Dialog Component Problem 4.1.1

2006-11-17 Thread Tine
Hi Guys... I try to use the new Dialog component. I have a directLink which binds to this methood: public void editTime(){ Dialog dialog = ((Dialog)getComponent("addTimeDialog")); dialog.show(); } The dialog.show() execution results in this exception: " E