I Guess you *could* make your components implement IFormComponent and
let the delegate call some form cycle methods.
first, I am not sure of how it works.
second, you need a thorough understanding of the form cycle. I suspect
this is not so simple (I might be wrong on that...) - personally I wou
Is the Spindle going to be coming out for Tap 4.x?
I use MyEclipse and go with what they supply, and found Spindle useful.
--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.362 / Virus Database: 267.13.7/182 - Release Date: 24/11/2005
--
Cool. Thought I was losing it there.
Geoff
On 11/25/05, Cliff Zhao <[EMAIL PROTECTED]> wrote:
>
> Me too.
> But got yours.
>
>
> On 11/25/05, Geoff Longman <[EMAIL PROTECTED] > wrote:
> >
> > Haven't seen any mail from the user or developer lists in at least 9
> > hours...
> >
> > Geoff
> > --
>
Me too.
But got yours.
On 11/25/05, Geoff Longman <[EMAIL PROTECTED]> wrote:
>
> Haven't seen any mail from the user or developer lists in at least 9
> hours...
>
> Geoff
> --
> The Spindle guy. http://spindle.sf.net
> Get help with Spindle:
> http://lists.sourceforge.net/mailman/listi
Succeed.
Thanks.
On 11/25/05, Massimo Lusetti <[EMAIL PROTECTED]> wrote:
>
> On 11/25/05, Howard Lewis Ship <[EMAIL PROTECTED]> wrote:
>
> > Try again ... they think they've fixed it:
>
> For the records: first success, right now.
>
> --
> Massimo
>
> --
Haven't seen any mail from the user or developer lists in at least 9 hours...
Geoff
--
The Spindle guy. http://spindle.sf.net
Get help with Spindle:
http://lists.sourceforge.net/mailman/listinfo/spindle-user
Announcement Feed:
http://www.jroller.com/rss/glongman?catname=/Announce
maybe use the if component and some ognl to locate the property in your
visit, if that's where it is
John
- Original Message -
From: "radone" <[EMAIL PROTECTED]>
To:
Sent: Friday, November 25, 2005 5:13 PM
Subject: detect user roles (somthing like )
> Hi,
>
> could anyone help me how
Hi,
could anyone help me how to detect roles of user in Tapestry?
Something like (struts)
Amin's text
Thanks in advance.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
On 11/25/05, Howard Lewis Ship <[EMAIL PROTECTED]> wrote:
> Try again ... they think they've fixed it:
For the records: first success, right now.
--
Massimo
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e
I found out what was wrong...
I had the antiResourceLocking="true" flag set in my webapp context.xml (tomcat
cfg)... When this flag is set Tomcat works on a copy of your Webapp... Thanks
for your sugestion anyway...
-
To un
Try again ... they think they've fixed it:
http://www.javaforge.com/proj/tracker/itemDetails.do?task_id=1273
On 11/25/05, Massimo Lusetti <[EMAIL PROTECTED]> wrote:
> On 11/24/05, Cliff Zhao <[EMAIL PROTECTED]> wrote:
>
> > I still get authorization error:
> > svn: PROPFIND request failed on '/s
Title: Vinu Varghese
Hi,
You need to give SET
CATALINA_OPTS=-Dorg.apache.tapestry.disable-caching=true, then start
tomcat
Check this url http://jakarta.apache.org/tapestry/faq.html, they says
it should work :-).
HTH
- Regards
Vinu
Mario wrote:
I have tryed that and it does not help...
Vi
I forced tapestry to display the Error page (the page for exceptions and other
tapestry errors) and there I can see that the system enviroment
variable "org.apache.tapestry.disable-caching" is set to true, so I am passing
the variable correctly and Tapestry i receiving it, but it does not stop
Peter piper picked a peck of picked peppers! :-)
Have a look at Block and RenderBlock. There have been lots of recent
threads on this list that discuss these.
Geoff
On 11/23/05, pickerel <[EMAIL PROTECTED]> wrote:
> How to insert a component or multi components to
> a component by the component
I have tryed that and it does not help...
Vinu Varghese gmail.com> writes:
>
> Hi
> I think u need to pass this as an parameter to the jvm used to launch
> tomcat. You can add this to CATALINA_OPTS variable in catalina.bat file.
> CATALINA_OPTS=-Dorg.apache.tapestry.disable-caching=true, the
Andrei, looks like a tricky bug to nail down. I would suggest you open
a jira issue and attach a small project that shows the problem.
Geoff
On 11/25/05, Andrei Chiritescu <[EMAIL PROTECTED]> wrote:
> Hi,
> I have build a small tapestry portlet and deployed it on jboss-portal.
> The portlet is ve
HI Mahmut ,
You have an option to specify a listener for a form.
http://jakarta.apache.org/tapestry/3.0.3/doc/ComponentReference/Form.html
Thanks
Mahmut Izci wrote:
Ron Piterman wrote:
There is currently no form related listener capabilities inside the
cycle. What you could do is ov
Ron Piterman wrote:
There is currently no form related listener capabilities inside the
cycle. What you could do is override renderComponent(), and, after
calling super, check if the cycle is rewinding. if it is, perform the
additional validation you need.
since you called the super method, you
linuja gmail.com> writes:
>
> What is "How about doing it on demand"?
>
> is this:
>
> public ItemSelectionModel getFirstItemSelectionModel(){
> if(firstItemSelectionModel == null{
> firstItemSelectionModel = constructFirstSelectionModel();
> }
> }
Yes.
--
Author of a book fo
You might want to check out the hivetrans project, it already has this
functionality.
Overriding the services is not the best idea; you should instead
contribute a filter into the
tapestry.request.WebRequestServicerPipeline configuration.
http://jakarta.apache.org/tapestry/tapestry/hivedocs/confi
Hi Mahmut,
Bind your form's 'delegate' param with a bean of type
ValidationDelegate and bind the components 'validators' param with
Validators
Thanks
- Original Message -
From: "Mahmut Izci" <[EMAIL PROTECTED]>
To:
Sent: Friday, November 25, 2005 7:03 PM
Subject: Compo
On 11/24/05, Christian Mittendorf <[EMAIL PROTECTED]> wrote:
>
> Step 1: create a new project
> Step 2: add you database model
> Step 3: there's no step 3 ;-)
>
> Ok, there are some more steps if you want your app to look nice and
> work properly.
>
Threre was a whole lot of step 3 for anything th
There is currently no form related listener capabilities inside the
cycle. What you could do is override renderComponent(), and, after
calling super, check if the cycle is rewinding. if it is, perform the
additional validation you need.
since you called the super method, you can cound on all val
Hi
I think u need to pass this as an parameter to the jvm used to launch
tomcat. You can add this to CATALINA_OPTS variable in catalina.bat
file.
CATALINA_OPTS=-Dorg.apache.tapestry.disable-caching=true, then start
tomcat
HTH
- Regards
Vinu
Mario wrote:
Hi,
I am trying to disble templ
Hi,
assume that we have a page with a form. This page contains several
components.
Each component contain usually form fields (like textfield, select box).
The form listener method resides on the page.
When the form is submitted, how can the components get noticed of it
(e.g. to validate the f
Hi,
I am trying to disble template and page cache in Tapestry but cannot make it
work. I am doing exactly what is recommended eg. setting the enviroment variable
-Dorg.apache.tapestry.disable-caching=true before starting Tomcat.
I have tryed doing this using the "set -Dorg.apache.tapestry.disab
Hi,
I have build a small tapestry portlet and deployed it on jboss-portal.
The portlet is very simple and contains a few links like : jwcid="@PageLink" page="SomeOtherPage">
I have used the the beta 13 jars and the link does not seem to be doing
anything(except maybe refresh).The strange part
On 11/24/05, Cliff Zhao <[EMAIL PROTECTED]> wrote:
> I still get authorization error:
> svn: PROPFIND request failed on '/svn/tapestry'
> svn: PROPFIND of '/svn/tapestry': authorization failed (
> http://svn.javaforge.com)
>
> What's the user name/password? not anonymous/anon as stated in the Java
Hi,
I'm trying to implement hivemind4spring that want to be a set of classes around
spring (currently I've implemented only Hibernate3 proxies), so that I can use
Spring proxy factories configured in hivemind style.
Now I'd like to replace the page service for Tapestry BasicEngine, so that I
ca
29 matches
Mail list logo