Re: T4.1: DropdownTimePicker i18n problem!

2007-06-27 Thread Malin Ljungh
:-) Actually it started working just by upgrading to the latest stable 4.1.2 !!! Thanks a lot :) (Though I had problem with ognl not taking my "{'updateThisComponentID'}", I had to change it to just "updateThisComponentID" but I guess that has to do with the new OGNL 2.7 - is it meant to be? Ka

Re: 4.1.2 dojo gregorian.js

2007-06-27 Thread Jesse Kuhnert
You can try replacing the default version of "ajaxShellDelegate" given to the Shell/ScriptIncludes with your own modified version. (source from http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/java/org/apache/tapestry/dojo/AjaxShellDelegate.java?view=markup ) Try drop

Re: 4.1.2 dojo gregorian.js

2007-06-27 Thread Paul Stanton
Thanks, looks like it missed the 4.1.2 boat :( andyhot wrote: Additionally, take a look at http://tapestry.apache.org/tapestry4.1/usersguide/localization.html#localization.accepted-locales It's always a good idea to limit those to the ones your app truly supports andyhot wrote: I had ope

Re: T3: Question

2007-06-27 Thread Jesse Kuhnert
Attachments don't work on apache lists. . On 6/27/07, Bhuiyan, Nazmul <[EMAIL PROTECTED]> wrote: Hi Nick, Please find attached code. Thanks Naz -Original Message- From: Nick Westgate [mailto:[EMAIL PROTECTED] Sent: Wednesday, 27 June 2007 3:42 p.m. To: Tapestry users Sub

Re: [t4] EventListener question

2007-06-27 Thread Jesse Kuhnert
Haha look at that. I forget that it can bind to any function sometimes. That's neat. :) Yes that was what I was thinking as the "strategy" for doing EventListener connections on this specific type of component. It would need to honor any existing informal onclick attributes and back off to

Re: [T5] Documentation

2007-06-27 Thread [EMAIL PROTECTED]
sorry! English is the most popular language in the world, not Chinese, currently at lease, I known. No more non-technical mess. :) 在 Wed, 27 Jun 2007 17:54:13 +0800,Vincent <[EMAIL PROTECTED]> 写道: please stop these kind of talk , if you have more to say , please in private mail , thanks

Re: upgrade to 4.1.1

2007-06-27 Thread craigham
I tried this to no avail, am I getting close? I realize this doesn't address the timer, but as a first step i was trying to call a method on the load of the screen. @EventListener(elements = "body", events = "onload") public void doCheck() { logger.debug("Do check cal

[T4.1.2] about jwcid and xml validator

2007-06-27 Thread #Cyrille37#
Hello, It Tap4.1.2 will accept a namespace for its xml attributes like jwcid ? Like Tap5 as its schema: xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"; It would be nice because of Eclipse Xml Validator which shoot because of jwcid attributes. any idea ? cyrille

Re: 4.1.2 dojo gregorian.js

2007-06-27 Thread andyhot
Additionally, take a look at http://tapestry.apache.org/tapestry4.1/usersguide/localization.html#localization.accepted-locales It's always a good idea to limit those to the ones your app truly supports andyhot wrote: I had opened up a jira for this: https://issues.apache.org/jira/browse/TAPESTR

Re: 4.1.2 dojo gregorian.js

2007-06-27 Thread andyhot
I had opened up a jira for this: https://issues.apache.org/jira/browse/TAPESTRY-1551 I'm not exactly sure if there's a way to tell dojo which locales exist in the server so as not to do those requests... The only hack i can offer you is to create those 2 classpath entries yourself, by copying t

Re: upgrade to 4.1.1

2007-06-27 Thread craigham
How would I hook up a listener which is fired every 1 second on the server which would check the status of things on the server? If the status was in a certain state, could I fire a redirect to a new page? Can I set this up with a method and a simple annotation? I have been looking, but just c

Re: 4.1.2 dojo gregorian.js

2007-06-27 Thread Paul Stanton
Anyone? Paul Stanton wrote: Hi, I've just installed 4.1.2 for the first time and run up my application (previously tested under 4.1.1). I did this simply by replacing my existing jars with the new versions (I don't use maven) so I've probably brought this on myself ;) I get the following w

RE: T3: Question

2007-06-27 Thread Bhuiyan, Nazmul
Hi Nick, Please find attached code. Thanks Naz -Original Message- From: Nick Westgate [mailto:[EMAIL PROTECTED] Sent: Wednesday, 27 June 2007 3:42 p.m. To: Tapestry users Subject: Re: T3: Question Please show us the relevant code. Cheers, Nick. Nazmul wro

Re: Congratulations on the release of 4.1.2

2007-06-27 Thread Julian Wood
Hear, hear! Just saw this now. Thanks again! J On 27-Jun-07, at 1:16 PM, Jesse Kuhnert wrote: Thanks! :) On 6/27/07, Igor Drobiazko <[EMAIL PROTECTED]> wrote: Just read the article on TSS. I would like to thank the Tapestry team for the hard work. Thank you guys for the best web framework e

Re: [T5] missing some listener to bind component/page events ?

2007-06-27 Thread #Cyrille37#
In another way to explain, I would like to make "by hand" the same work than a t:actionLink in a t:loop the code : ${guess} create several links like : /do.guess/4 /do.guess/6 /do.guess/7 So, howto do the same "by hand" (without a loop) ??? cyrille #Cyrille37# a écrit : Hi (agai

[T5] missing some listener to bind component/page events ?

2007-06-27 Thread #Cyrille37#
Hi (again and again ;-) Is it possible to create event for a component ?? After read guide "Component Events" and done some tests I could not figure howto manage differents events for a component. For exemple I would like to bind 2 links to the onActionA() method and 2 other link to the onAct

Re: [t4] EventListener question

2007-06-27 Thread Julian Wood
I used a little trick to get the radiobuttons to send an event, which I suppose could be the problem. All you need to do is add this onclick handler to each radio button, and then the tapestry event listener will respond. value="ognl:@[EMAIL PROTECTED]" onclick="document.getElementB

Re: One class for differents templates ?

2007-06-27 Thread #Cyrille37#
Howard Lewis Ship a écrit : This is an idea I am actively resisting. I don't want there to be any confusion or ambiguity between a class and its template. Multiple classes per template are somewhat ambiguous. You could have a base class with a template, and then have subclasses, which will in

Re: [T5] about component's html

2007-06-27 Thread #Cyrille37#
Howard Lewis Ship a écrit : Existing feature request in JIRA, but not yet implemented. Thanks Howard for your answer. Like that I can start thinking that I'm not so stupid ... ;-) And Thanks a lot for Tapestry 5, it is a real great pleasure to play with it !!! Best regards and sincere thank

Re: [t4] EventListener question

2007-06-27 Thread Julian Wood
I've made a sample application, as simply as I could, to show the problem. I've put it on my blog if anyone is interested in looking. http://jwoodchip.blogspot.com/2007/06/event-listener-oddities.html Thanks, J On 26-Jun-07, at 10:45 PM, Marcus Schulte wrote: That should really work. I'm us

Re: One class for differents templates ?

2007-06-27 Thread Howard Lewis Ship
This is an idea I am actively resisting. I don't want there to be any confusion or ambiguity between a class and its template. Multiple classes per template are somewhat ambiguous. You could have a base class with a template, and then have subclasses, which will inherit the base classes's temp

Re: [T5] about component's html

2007-06-27 Thread Howard Lewis Ship
Existing feature request in JIRA, but not yet implemented. On 6/27/07, #Cyrille37# <[EMAIL PROTECTED]> wrote: Hi, I could not find with T5 how to use only a part of a component html. I would like that only the body's component is rendering in the page, but all the html's component is rendered

Re: [T5] does PageTester render mixins?

2007-06-27 Thread Dan Adams
So, I guessed that this was due to classloader weirdness and I added an interface with just the method I needed, implemented it, and then put that in the environment instead and it worked fine. Should you be able to put components in Environment? This seems like a bug. On Wed, 2007-06-27 at 17:23

Re: [T5] does PageTester render mixins?

2007-06-27 Thread Dan Adams
Well, it appears that it does support mixins but they have to be private.(?) Why can't they be package private so you don't have to use @SuppressWarnings? Now that I've got that working I'm having another problem where it can't find my service that I put into Environment. The component being put i

Re: AJAX : DOJO vs JQuery

2007-06-27 Thread Martin Grotzke
jquery + T5 would be really great (we're also going to use this combination) On Wed, 2007-06-27 at 16:43 -0400, Evan Rawson - Work wrote: > i dont know how many you know about jquery, i recently discovered it today, > and from the demo's and plugins i found from it it look very superior verses

Re: [T5] does PageTester render mixins?

2007-06-27 Thread Howard Lewis Ship
It absolutely should. I'd be very surprised if it did not. PageTester is a kind of simulator of the outer portions of T5, not inner stuff like page construction and rendering. On 6/27/07, Dan Adams <[EMAIL PROTECTED]> wrote: I'm using PageTester in 5.0.4 to test a page and none of the mixins se

Re: T5: Equivalent of ListenerInvokerFilter?

2007-06-27 Thread Howard Lewis Ship
I was never happy with that solution, since there are so many other listener method invocations (in T4) that should not be wrapped with a transaction. The technique in tapestry-hibernate shows one approach to wrapping an entire request, which I think is more appropriate. On 6/26/07, Ben Tomasini

Re: Commons Logging in Tapestry

2007-06-27 Thread Ceki Gulcu
Howard Lewis Ship gmail.com> writes: > > I looked at SLF4J earlier; at the time it wasn't thread safe. > Switching over to it is still a possibility. Hi Howard, Good memory. I beleive that the thread safety issues were fixed about 10 months ago. See also [1]. Please let me know if you need

[T5] does PageTester render mixins?

2007-06-27 Thread Dan Adams
I'm using PageTester in 5.0.4 to test a page and none of the mixins seem to be rendering. Are mixins supported under PageTester? -- Dan Adams Senior Software Engineer Interactive Factory 617.235.5857 - To unsubscribe, e-mail: [

[T5] about component's html

2007-06-27 Thread #Cyrille37#
Hi, I could not find with T5 how to use only a part of a component html. I would like that only the body's component is rendering in the page, but all the html's component is rendered The component HTML : http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> TheComponent Hello ! The

AJAX : DOJO vs JQuery

2007-06-27 Thread Evan Rawson - Work
i dont know how many you know about jquery, i recently discovered it today, and from the demo's and plugins i found from it it look very superior verses dojo, i have used both, but i prefer jquery, do to the fact that its way easier to create new libraries and plugins for it. Almost like how tap

[OT] Re: about Maven, Java Applet and Tapestry's pages...

2007-06-27 Thread Steven Coco
Hi. You can actually create any kind of assembly you want: you can instruct Maven to put the Applet in a directory of your choosing. However, you're right about the problem of Jetty serving pages from the source tree, and I don't know how to overcome that particular thing. I'm new to developin

Re: T4.1: Custom exception page and async="true"

2007-06-27 Thread Malin Ljungh
Thanks for your reply Jesse. I have the following: in my .application-file to specify my exception page. Don't know where I've learnt that (probably from this mailing list) but it has worked fine without the ajax stuff. I guess this is the problem (?). I'll try to use the hivemodule.xml-tape

Re: T5: Will it be a full stack framework?

2007-06-27 Thread Todd Orr
Regarding the original poster's statements: I think that Tapestry is so great because it does the job of an MVC really well. I hope that it doesn't become a "full stack" solution. I think it would be more beneficial to the community to ensure that Tapestry's focus is the MVC. Additional function

Re: PageLink got disabled when URL get too long

2007-06-27 Thread Jesse Kuhnert
Probably because of limits on the amount of data you are allowed to encode in GET requests. (specifically I think IE has this issue with something around 4k or so ) You'll have to either use a smarter DataSqueezer to encode smaller versions of your lists or just store less data somehow. Most pe

Re: Problems with ognl 2.7

2007-06-27 Thread Jesse Kuhnert
The syntax hasn't changed .just the runtime. If you file a JIRA issue here it should be fairly easy to fix. http://jira.opensymphony.com/browse/OGNL Most jira issues are fixed within a day or two of filing - but you'll have to use the new 2.7.1-SNAPSHOT version to see the fixes. (which is

Re: OGNL 2.7 Must use #this

2007-06-27 Thread Jesse Kuhnert
As with Kalle, you can be about 97% sure it won't be fixed if there is no issue filed at http://jira.opensymphony.com/browse/OGNL . On 6/27/07, Maximilian Weißböck <[EMAIL PROTECTED]> wrote: We have another ognl problem with Tapestry 4.1.2. We use the expression "ognl:ordersPerShopLoop.index

Re: Congratulations on the release of 4.1.2

2007-06-27 Thread Jesse Kuhnert
Thanks! :) On 6/27/07, Igor Drobiazko <[EMAIL PROTECTED]> wrote: Just read the article on TSS. I would like to thank the Tapestry team for the hard work. Thank you guys for the best web framework ever. br, Igor -- Jesse Kuhnert Tapestry/Dojo team member/developer Open source based consul

Re: T4.1: Custom exception page and async="true"

2007-06-27 Thread Jesse Kuhnert
Maybe I've screwed up the exception page handling somehow Currently the ajax response handler looks specifically for exception pages matching any of the configurable exception page names via: http://tapestry.apache.org/tapestry4.1/developmentguide/exceptionpages.html Are you somehow using di

Re: T5: Conditional JavaScript code

2007-06-27 Thread Jesse Kuhnert
I'm not sure about the best solution for this but have you tried replacing < with < to make the parser happy about well formed html ? (or do a style comment block ? ) On 6/27/07, Martin Dietze <[EMAIL PROTECTED]> wrote: Hi, I would like to add inline JavaScript code to a form dependi

Re: T4.1: DropdownTimePicker i18n problem!

2007-06-27 Thread Jesse Kuhnert
I'm not sure I've seen this problem before. Would it be possible for you to log this in jira so I can take a look at it ? On 6/25/07, Malin Ljungh <[EMAIL PROTECTED]> wrote: Hi, I'm trying to use the DropDownTImePicker in my internationalized app. If locale is "en" (English) it works fine! I

Re: [t4] EventListener question

2007-06-27 Thread Jesse Kuhnert
EventListener && Radio Groups don't really get along so well. The reason being that each radio group button must have the same name attribute and there is no dom equivalent of a select->options wrapper around them. It's possible that ~something~ can be done for this but I'm not sure of what that

Re: reg- Migration from tapestry 3.0 to 4.0 DTD

2007-06-27 Thread Jesse Kuhnert
Please send these kinds of emails to the users list from now on. The development list is for discussions surrounding the development of tapestry itself - not applications based on it. It's impossible to know what your problem is without more information - like a full stack trace of the error you

Re: Commons Logging in Tapestry

2007-06-27 Thread Howard Lewis Ship
I looked at SLF4J earlier; at the time it wasn't thread safe. Switching over to it is still a possibility. On 6/27/07, Renat Zubairov <[EMAIL PROTECTED]> wrote: Hello, We also had the same problem but apparently they can be solved without changes from the Tapestry side. You can modify your dep

Ognl Download

2007-06-27 Thread Chris Chiappone
Could someone point me to the binary download of the 2.7 release. Thanks, -- ~chris - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

One class for differents templates ?

2007-06-27 Thread #Cyrille37#
Hi, Perhaps it is a stupid question, but in this case it should demonstrate that I do not understand anything ;-) Is it possible to use differents templates with the same page/component class ? like : MyPage.java and MyPage01.html, MyPage02.html, ... I think that with Tap4 we could do that

PageLink got disabled when URL get too long

2007-06-27 Thread Ajit Raj
Hi, I have a page that stores ( @Persist("client") ) two lists, for example -- a state list, and a city in that state list. The city list could be updated if the state selection is changed. So, I use @Persist("client") to store the lists. I also have a PageLink linking to other page. I found

Problems with ognl 2.7

2007-06-27 Thread Maximilian Weißböck
We just upgraded to Tapestry 4.1.2 but have some ognl problems. So far we found two expressions that do no longer work: "ognl:components.productSaleTable.tableRow.totalPriceInCent / 100.0" It throws this error: Caused by: compile error: ) is missing The second one is "ognl:ordersPerShopLoop.in

How can i make a Stream Response a Tapestry Component

2007-06-27 Thread Fidel Chavarria
I trying to create a Chart dinamically and place it in a html page , to do so a create a ImageStreamResponse class that convert my Jfreechart instance to a byteArrayInputStream class ImageStreamResponse implements StreamResponse { private JFreeChart jfreeChart ;

AW: OGNL 2.7 Must use #this

2007-06-27 Thread Maximilian Weißböck
We have another ognl problem with Tapestry 4.1.2. We use the expression "ognl:ordersPerShopLoop.index % 2 == 0" (for even/odd style in a table) and get the following error (see below). Any hints how to prevent this or how we have to rewrite the above ognl expression? Thanks, Max 2007-06-27 1

Re: Antwort: Messages and @inject

2007-06-27 Thread Tina Umlandt
Well. now I know what you mean ;-) This is the part my colleagues were doing so I missed this the previous times :-(. But thx a lot and yes, I think this is the right time to read the docs again ... Kristian Marinkovic wrote: before you inject a service you must tell the ioc container how

Re: Antwort: Messages and @inject

2007-06-27 Thread Kristian Marinkovic
before you inject a service you must tell the ioc container how to create it (in your AppModule). you can do this by using the ServiceBinder: public static void bind(ServiceBinder binder) { binder.bind(MyService.class,MyServiceImpl.class); } Or you can provide a builder method

Re: Antwort: Messages and @inject

2007-06-27 Thread Tina Umlandt
Hej, I didn't add anything to my AppModule. Do I have to? Which method do you mean? Thx, Tina Kristian Marinkovic wrote: it should work as you've tried could you post the code from your AppModule where you return your service? Tina Umlandt <[EMAIL PROTECTED]> 26.06.2007 17:56

Re: T5: Will it be a full stack framework?

2007-06-27 Thread Ivan Dubrov
Robin Ericsson wrote: > > Ok, I've checked out the code from you SVN so I'll poke around a bit. > Anything specific that's not working? Listerner methods isn't a big > deal for me at the moment :) It works basically, but the IoC configuration code is not very flexible (since it was developed for co

Re: T5: Will it be a full stack framework?

2007-06-27 Thread Robin Ericsson
On 6/27/07, Ivan Dubrov <[EMAIL PROTECTED]> wrote: Of course. I thought making something like tapestry-security module, but now I'm completely out of time to do it. Ok, I've checked out the code from you SVN so I'll poke around a bit. Anything specific that's not working? Listerner methods isn'

Congratulations on the release of 4.1.2

2007-06-27 Thread Igor Drobiazko
Just read the article on TSS. I would like to thank the Tapestry team for the hard work. Thank you guys for the best web framework ever. br, Igor

Re: T5: Will it be a full stack framework?

2007-06-27 Thread Ivan Dubrov
Robin Ericsson wrote: > > Ah, real nice, I was working on this as well, but I've just got time > to work on it and now I don't have to. :) > > Can you put this together as a maven package or something? Of course. I thought making something like tapestry-security module, but now I'm completely out o

Re: [T5] Documentation

2007-06-27 Thread Vincent
please stop these kind of talk , if you have more to say , please in private mail , thanks. On 27/06/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: 在 Wed, 27 Jun 2007 13:55:39 +0800,小司 <[EMAIL PROTECTED]> 写道: > 说的对。主要是英语实在是不好。惭愧呀。能读懂就不错。在加上技术上一些术 > 语。学起来很慢。看来只有提高我自己的英语水平了。谢谢你的提醒。 是啊,全球都统一说汉语

Re: [T5] Documentation

2007-06-27 Thread [EMAIL PROTECTED]
在 Wed, 27 Jun 2007 13:55:39 +0800,小司 <[EMAIL PROTECTED]> 写道: 说的对。主要是英语实在是不好。惭愧呀。能读懂就不错。在加上技术上一些术 语。学起来很慢。看来只有提高我自己的英语水平了。谢谢你的提醒。 是啊,全球都统一说汉语多好,哈哈。再等 50~100 年估计是有希望的。 本人看英文文档也是借助金山词霸乱翻。 在 [EMAIL PROTECTED]<[EMAIL PROTECTED]> 写道: 在 Tue, 26 Jun 2007 08:30:11 +0800,小司 <[EMAIL PROTECTED]> 写道:

Re: To the french fellows of the list

2007-06-27 Thread Christian Dutaret
Hi all, I'm French too and I use Tapestry for about one year now (and Java since 2000) I am one of the owners of a company in Paris that runs a general public web site in the insurance industry. I'm in charge of all tech stuff Our website is developed using Tap4.1.2 (still using snapshots and des

T4.1: Custom exception page and async="true"

2007-06-27 Thread Malin Ljungh
Hi, I'm trying to "ajaxify" my app and I have problem with my custom exception page. If an unexcpected exception occurs my custom exception is executed. Problem is that the client sees nothing of this (of course) since the ID I've specified in the updateComponents does not exist in my custom exc

Re: about JSON-RPC

2007-06-27 Thread #Cyrille37#
Renat Zubairov a écrit : Depends on the version of tapestry. If you are talking about 4.1 you can integrate it seamlessly to your page About 5.0 I don't know the details, but as far as I've seen it should be simple. About earlier versions of tapestry you need to extend a BasePage class a bit to

Re: about JSON-RPC

2007-06-27 Thread #Cyrille37#
Martino Piccinato a écrit : Have your component implement the IJSONRencerer interface ( http://tapestry.apache.org/tapestry4.1/apidocs/org/apache/tapestry/IJSONRender.html ) Thanks ! I'll read more today around that. Is there a plan for JSON and Tapestry5 ? Cyrille. On 6/27/07, Renat Zu

Re: To the french fellows of the list

2007-06-27 Thread #Cyrille37#
Hello from France, I'm Cyrille, and I'm learning on working with Java for 1 year. Before Java I was programming with Php, MSVisualStudio C++ and C#. I'm discovering the Java world with Tapestry 4 and now Tapestry 5. I've read many books about Pojos, EJB3, Hibernate and so. My brain has growed

RE: T5: Conditional JavaScript code

2007-06-27 Thread Adam Ayres
You could use the PageRenderSupport Environmental annotation to set a JavaScript variable in your page class that is the evaluated by the embedded component JavaScript. MyPageComponent.java: @Environmental private PageRenderSupport pageRenderSupport; @BeginRender void beginRender() { pag

Re: T5: Conditional JavaScript code

2007-06-27 Thread Nick Westgate
You'll get better advice from JS gurus, but I usually just reverse the condition: for (var i = 0; someConstant >= i ; i++) { Cheers, Nick. Martin Dietze wrote: Hi, I would like to add inline JavaScript code to a form depending on conditions set within the page class. I thus wrote code like

Re: To the french fellows of the list

2007-06-27 Thread Lionel Touati
Hi François, Yes you're right, sorry about our english reader to have put some differentiation in this list. I hope you will forgive me :) I also forgot to introduce myself as you did. I'm working for a B2B company specialized in business travel. We move our Pseudo struts framework to tapes

Re: about JSON-RPC

2007-06-27 Thread Martino Piccinato
Have your component implement the IJSONRencerer interface ( http://tapestry.apache.org/tapestry4.1/apidocs/org/apache/tapestry/IJSONRender.html ) On 6/27/07, Renat Zubairov <[EMAIL PROTECTED]> wrote: Depends on the version of tapestry. If you are talking about 4.1 you can integrate it seamles

T5: Conditional JavaScript code

2007-06-27 Thread Martin Dietze
Hi, I would like to add inline JavaScript code to a form depending on conditions set within the page class. I thus wrote code like this: | | function myFunc() { | | for (var i = 0; i < someConstant; i++) { | doSomethin(); | } | | } | This code ca

Re: Commons Logging in Tapestry

2007-06-27 Thread Renat Zubairov
Hello, We also had the same problem but apparently they can be solved without changes from the Tapestry side. You can modify your dependencies in your pom.xml (I assuming you are using maven) that tapestry and any tapestry dependency will not include commons-logging jars in the WAR file, and inc

Re: upgrade to 4.1.1

2007-06-27 Thread Renat Zubairov
I guess better approach (or say not better but proper from the dojo perspective) is to use dojo event framework to associate needed events via dojo. There are some advantages of this approach: 1. Multiple listeners can be associated with the same event in the cross-bowser compatible manner 2. It l

Re: T4.1: DropdownTimePicker i18n problem!

2007-06-27 Thread Renat Zubairov
Hello, We are not using dropdowndatepicker but a standard datepicker, however I guess the problem you have is not really Tapestry related, but Dojo related because dojo integration in Tapestry is usually very simple - just render tag and let dojo do the job, therefore I would suggest you to: 1. S

Re: about JSON-RPC

2007-06-27 Thread Renat Zubairov
Depends on the version of tapestry. If you are talking about 4.1 you can integrate it seamlessly to your page About 5.0 I don't know the details, but as far as I've seen it should be simple. About earlier versions of tapestry you need to extend a BasePage class a bit to generate JSON in response.

about JSON-RPC

2007-06-27 Thread #Cyrille37#
Hello, I'm using JSON-RPC for talking beetwen a Java Applet and the WebApplication. To manage JsonRpc calls I've done a Servlet. I come to you to know if there is a Tapestry way for handling those JsonRpc calls ? thanks for ideas cyrille --