Re: Why does tapestry-hibernate depend on tapestry-core ?

2011-05-10 Thread Howard Lewis Ship
The naming is odd because tapestry-hibernate was split off into tapestry-hibernate and tapestry-hibernate-core after the fact, for exactly these reasons. tapestry-hibernate might be better named as tapestry-hibernate-web, but backwards compatibility is better than perfect naming. On Tue, May 10,

Re: Why does tapestry-hibernate depend on tapestry-core ?

2011-05-10 Thread Hugo Palma
ah, awesome. Thanks. On Tue, May 10, 2011 at 18:26, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Tue, 10 May 2011 14:09:30 -0300, Hugo Palma > wrote: > > Shouldn't tapestry-hibernate only depend on tapestry-ioc and not >> tapestry-core ? >> I was hoping to use tapestry-ioc an

Re: Why does tapestry-hibernate depend on tapestry-core ?

2011-05-10 Thread Thiago H. de Paula Figueiredo
On Tue, 10 May 2011 14:09:30 -0300, Hugo Palma wrote: Shouldn't tapestry-hibernate only depend on tapestry-ioc and not tapestry-core ? I was hoping to use tapestry-ioc and tapestry-hibernate and not having to bundle tapestry-core also. tapestry-hibernate-core is what you're looking for: h

Why does tapestry-hibernate depend on tapestry-core ?

2011-05-10 Thread Hugo Palma
Shouldn't tapestry-hibernate only depend on tapestry-ioc and not tapestry-core ? I was hoping to use tapestry-ioc and tapestry-hibernate and not having to bundle tapestry-core also. Any ideas ?

Re: Using JavascriptSupport addInitializerCall

2011-05-10 Thread LLTYK
addInitializer only calls on the Tapestry.Initializer object. addScript calls global functions. So: Tapestry.Initializer.createDroppable = function() { Droppables.add('rightContent'); alert('added RightContent to droppables'); }; And: addInitializerCall("createDroppable"); -- View thi

Using JavascriptSupport addInitializerCall

2011-05-10 Thread Rich M
Hi, I'm trying to leverage some of scriptaculous in a new application I'm working on. I've got the @Import worked out for including the modules of scriptaculous I want, but I'm having a hard time grasping how to create and use some Javascript libraries I create in my pages. The first simple

Re: [ANN] JumpStart 5.2.1 released

2011-05-10 Thread Massimo Lusetti
On Mon, May 9, 2011 at 3:24 PM, Geoff Callender wrote: > As always, all feedback - good and bad - is welcome :-) Great news Geoff! Cheers -- Massimo http://meridio.blogspot.com - To unsubscribe, e-mail: users-unsubscr...@tape

Re: BeanEditForm: What's happening to my object parameter?

2011-05-10 Thread Geoff Callender
Nope, it's like Rich said: onPrepare() is being called twice during the render phase, and then the object disappears! Yet, when you replace BeanEditForm with a Form around a BeanEditor it works correctly: onPrepare() is called once during the render phase and the object doesn't disappear:

Re: BeanEditForm: What's happening to my object parameter?

2011-05-10 Thread Geoff Callender
It looks like a bug - onPrepare() is not being called during render of BeanEditForm. For example, this page should have rendered Person 1: http://jumpstart.doublenegative.com.au/jumpstart/examples/input/edit1/1 I'm sure it worked in 5.1.0.5 but doesn't in 5.2.5. Anyone else seeing this?

Re: [ANN] JumpStart 5.2.1 released

2011-05-10 Thread Muhammad Mohsen
You guys rock!..thanks a lot :) On Tue, May 10, 2011 at 11:21 AM, Geoff Callender < geoff.callender.jumpst...@gmail.com> wrote: > Thanks for the note about the Tapestry 5 Caffe link not working. I'll fix > it soon. It should be: > > > http://tapestry5.ideascale.com/a/ideafactory.do?id=3004&mode=r

Re: [ANN] JumpStart 5.2.1 released

2011-05-10 Thread Geoff Callender
Thanks for the note about the Tapestry 5 Caffe link not working. I'll fix it soon. It should be: http://tapestry5.ideascale.com/a/ideafactory.do?id=3004&mode=recent&discussionFilter=byids&discussionID=9482 Geoff On 10/05/2011, at 12:19 AM, Taha Hafeez wrote: > Thanks, I use it as a r

Re: simple int selection model

2011-05-10 Thread Paul Stanton
model="literal:0,1,2,3,4,5" works On 10/05/2011 1:05 PM, Thiago H. de Paula Figueiredo wrote: On Mon, 09 May 2011 23:00:49 -0300, Paul Stanton wrote: Hi thiago, That's what I thought, however is being rendered as value="">0..5 Have you tried model="[0, 1, 2, 3, 4, 5]"? ---