Re: T5's Ajax/Zone implementation has substantial limitations

2009-01-07 Thread Robert Binna
Hi Avi! First I've to say I really like tapestry 5 and its huge improvements over T4. Most of all the live class reloading! At the moment I am trying to do an integration of T5 with extjs. Till now it seems to go quite good. I can render ext components over to the client use informal

Tapestry 5 and Streaming

2008-11-13 Thread Robert Binna
Hi I am writing an application where I am streaming data to the client. In tapestry 5.0.6 i used ActionRenderResponseGenerator to solve this. Now I tried to upgrade to the latest version of T5 and found out that I cannot use this class as a return Type for an Action anymore. I've seen that I

Re: Tapestry 5 and Streaming

2008-11-13 Thread Robert Binna
/Tapestry5HowToCreateAComponentEventResultProcessor Kind regards, Robert Am 13.11.2008 um 14:42 schrieb Robert Binna: Hi I am writing an application where I am streaming data to the client. In tapestry 5.0.6 i used ActionRenderResponseGenerator to solve this. Now I tried to upgrade to the latest

Tapestry and OSGi

2008-04-22 Thread Robert Binna
Hi I have a question towards using tapestry and OSGi. Has any one of you done something with Tapestry and OSGi till now? Does anyone know of some best practices, pitfalls? Thanks a lot in advance, Best regards, Robert

Interesting Behaviour of Boolean Paramter in tapestry 4

2007-11-13 Thread Robert Binna
Hi We are using tapestry 4.1.3. We have a component that displays a select box where you are able to select, true, false and null. So the obvious choice for a value parameter would be Boolean. Therefor in our component we have a parameter called value defined like in the example below.

T5 change between 5.0.4 and 5.0.5 and Spring

2007-07-09 Thread Robert Binna
Hi I just changed between version T 5.0.4 and T 5.0.5 By the change I got the following error: Construction of service 'Alias' has failed due to recursion: the service depends on itself in some way. Please check org.apache.tapestry.services.TapestryModule.build(Log, String,

Re: T5 change between 5.0.4 and 5.0.5 and Spring

2007-07-09 Thread Robert Binna
Sounds plausibly. Thanks for your fast answer. Robert Am 09.07.2007 um 18:24 schrieb Davor Hrg: st say explicitely what to inject since alias service is not yet initialized, and depends on TypeCoercer Davor Hrg

Re: Favorite charting tool to use with Tapestry?

2007-01-24 Thread Robert Binna
Hi Last time I needed charting I used http://www.liquidx.net/plotkit/. With it and some javascript glue code the only thing you need to do, is to render tables with the corresponding values. Its probably not the most sufficticated solution but it is quite easy to use. kind regards,

Re: hook into T4's page creation process

2006-12-27 Thread Robert Binna
You could use the StateObjectManagerRegistry inject it into your service and can then call: StateObjectManager manager = (StateObjectManager) registry.get(yourstate); on the manager you can obtain your State Object by manager.get() I think this should work Kind regards, Robert

tapestry-acegi and tapestry 4.1

2006-12-26 Thread Robert Binna
Hi I justed wanted to use tapestry-acegi on a project of mine that uses tapestry 4.1. Has someone get it working because the current pom file is for tapestry 4.0? Kind regards, Robert - To unsubscribe, e-mail:

Re: use unique id's generated by tapestry

2006-11-12 Thread Robert Binna
Tanks a lot. That really helps. regards, Robert Jesse Kuhnert schrieb: Not anymore they don't. On 11/9/06, Robert Binna [EMAIL PROTECTED] wrote: Hi. Thanks, but I know about this method getClientId(), but each component looses its client id information after rendering is finished and so

Re: use unique id's generated by tapestry

2006-11-09 Thread Robert Binna
Hi You are right. There seems to be situation when you get the right id, but I just came across one where this is not the case. After that I take a short look at the tapestry code and I wonder why my sugested solution ever worked. My Question is, can anyone give me a hint how to implement

Re: use unique id's generated by tapestry

2006-11-09 Thread Robert Binna
, r. On 11/9/06, Robert Binna [EMAIL PROTECTED] wrote: Hi You are right. There seems to be situation when you get the right id, but I just came across one where this is not the case. After that I take a short look at the tapestry code and I wonder why my sugested solution ever worked. My

Re: getClientId() seems to output the wrong value

2006-11-02 Thread Robert Binna
Thanks for your answer, but I checked the problem again and I don't have 2 different forms. As far as I have understood the main Problem is that in the render method of AbstractComponent the _clientId is erased in the finally block. To solve my problem I am doing the following workaround:

Re: Addressing of components inside a For-loop in a listener

2006-11-02 Thread Robert Binna
Hi! Normaly getClientId() would give you the unique id (at least the id that denotes the correspondig html element). But see my last post, about troubles with it. Eventough it would output the correct value, you have do handle the id inside the loop for generating you custom validation code,

getClientId() seems to output the wrong value

2006-10-25 Thread Robert Binna
Hi Since my last update on tapestry 4.1 I have a problem when using getClientId(). I have a Component (DateRangePicker) consisting of a SelectBox and two DropDownDatePickers. To do some javascript (setting the datePicker visible/invisible,depending on the range type

Re: Equivalent of JSP Includes?

2006-09-24 Thread Robert Binna
But if RenderBlock is used the Block that should be rendered must be somewhere defined, or do I get it totaly wrong? Is something like this possible (I think that's what Mike wants to do): span jwcid=@MetaComponent componentName=ognl:nameOfComponent [informal parameters.] / Robert Jesse

Re: DatePicker not working after upgrading from 4.0.2 to 4.1

2006-09-12 Thread Robert Binna
But be aware that you can't change the input dateformat at the moment, because the dojo DropdownDatePicker doesn't support it yet (but should from version 0.4 on) regards, Robert soir schrieb: Hello, I've found same problem recently. Try to use DropdownDatePicker component instead. Igor

Re: Custom annotations lost on abstract methods on a page class

2006-08-26 Thread Robert Binna
it to figure how to identify a Tapestry enhanced base page. !page.getSimpleName().startsWith($) Is there are better way? Thanks. -- Forwarded message -- From: Robert Binna [EMAIL PROTECTED] Date: Aug 26, 2006 2:42 AM Subject: Re: Custom annotations lost on abstract methods on a page class

Re: Custom annotations lost on abstract methods on a page class

2006-08-25 Thread Robert Binna
Hi I know this problem. I think it has to do with the Javassist enhancement. A solution to get the information of the annotation at runtime is to walk up the class hierarchy and ask each superclass for the declared methods that correspond the abstract method and get its annotations. As far as