Re: Tap5 classloading

2006-12-16 Thread Howard Lewis Ship
So far I've only tested on Jetty. I'll have to start looking at some of the other common platforms soon. On 12/13/06, bueggers <[EMAIL PROTECTED]> wrote: Did anyone observe Tap5-classloading working with other webcontainers than Jetty? Using Jetty, it is all well and extremely charming, but

Re: tapestry 5.0

2006-12-16 Thread Howard Lewis Ship
So far, whenever I've added some interesting functionality. On 12/15/06, Massimo Lusetti <[EMAIL PROTECTED]> wrote: On 12/15/06, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > What's going on is that Tapestry is in a snapshot stage, where we don't have > official releases published to the cent

Calendar component

2006-12-16 Thread Simon Raveh
Hi, I need to integrate calendar functionality into my app to display events. Does anybody know where can I get such a component. Thanks, Simon

Re: using json response

2006-12-16 Thread Jesse Kuhnert
Maybe the tree widget is expecting a json array vs object being returned...Ie ["title","a new title"]. You can do that easily by doing this instead: JSONArray arr = writer.array(); arr.put("title"); arr.put("a new title"); On 12/16/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: Yes, that should

Re: DropdownTimePicker, DropdownDatePicker, and time zones

2006-12-16 Thread Jesse Kuhnert
Thanks for noticing. I didn't follow the exact pattern that you outlined but have made them rfc3339 compliant and things look much better now. Should be available at some point today. On 12/15/06, Jon McCarty <[EMAIL PROTECTED]> wrote: Hi everyone – I'm enjoying the Tap4.1.1 line (I think tha

Re: using json response

2006-12-16 Thread Jesse Kuhnert
Yes, that should be fine. It is a perfectly valid JSON response. There aren't too many ways to vary it. On 12/16/06, Alexandru Dragomir <[EMAIL PROTECTED]> wrote: ok, then i might be doing something else wrong.. Is the tree widget. And now i'm at editing a node label phase. I edit , press enter

Re: using json response

2006-12-16 Thread Alexandru Dragomir
ok, then i might be doing something else wrong.. Is the tree widget. And now i'm at editing a node label phase. I edit , press enter , and the response received is {"title" : "a new title"} without other brackets. The render method is public void renderComponent(IJSONWriter writer, IRequestCycle

Re: using json response

2006-12-16 Thread Jesse Kuhnert
Quoting/not quoting a response should have nothing to do with it being valid JSON. Nor should a response contain the surrounding "(" content ")". I'd be interested in knowing which dojo widget this is but if it's using dojo.io as the transport layer it should be adding in the "(" for you. On 12/

using json response

2006-12-16 Thread Alexandru Dragomir
I'm working on a component that expects a json response (.. frankly , i'm not sure anymore about this) Is a dojo widget that i'm trying to convert into tapestry. A valid response would be : ({title: "a new title"}) or even dojo.debug("server gave a new title"); ({title: "a new title"}) The p

Re: Re: tapestry prop / ognl?

2006-12-16 Thread Sam Gendler
use prip where you can for its speed and ognl where you can't. --sam On 12/15/06, Barry Books <[EMAIL PROTECTED]> wrote: I don't know about the norm but prop does not have all the functionality of ognl. It's probably faster at what it can do. So if you need speed or believe in optimizing early