Re: T5.4-alpha-2: Module Initialization Priority / Order

2013-01-18 Thread Steve Eynon
> If possible, change your module to not care about order. Hmm... that reminds me of: Patient: "Doctor, doctor! It hurts when I do this" Doctor: "Well don't do it then!" After realising this has to be a common issue with RequireJS, I figured it must have been already solved. And in some way it i

Re: Tapestry datatable with NULL number

2013-01-18 Thread Emmanuel DEMEY
Hi, Which version of Tapestry jQuery do you use ? I think this issue has been solved in the current SNAPSHOT. Manu 2013/1/18 dominate > Hello, > > I am usin Tapestry table t:type="jquery/datatable". When one field (whose > datatype is Long) is null, it gives me error: Render queue error in >

Re: T5.4-alpha-2: Module Initialization Priority / Order

2013-01-18 Thread Howard Lewis Ship
Yes, lots of async going on, so the dependencies of the modules may cause the module's exporting function (the thing you pass to define() as the second parameter) to occur in an unpredictable order. If possible, change your module to not care about order. However, I'm thinking about scanning the

JMeter Load Test example

2013-01-18 Thread sthomps
Thought I would give back a little to the community for all your help. As JMeter is not the easiest tool to use, here's a very simple load-test for testing an Ajax submit on a form. load-test.jmx -- View this message in

Tapestry datatable with NULL number

2013-01-18 Thread dominate
Hello, I am usin Tapestry table t:type="jquery/datatable". When one field (whose datatype is Long) is null, it gives me error: Render queue error in Expansion[PropBinding[expansion bin/Search:thegrid(cellValue)]]: Cannot format given Object as a Number So, there should be some generic way to prev

Re: [ANN] JumpStart 6.5.4 - fixes populating the database

2013-01-18 Thread Geoff Callender
Hi Jon, Thanks - you are right - the installation instructions now handle this (as of a few hours ago). I misdiagnosed the problem and you've pointed me to the real cause, which was that the hsqldb and sqltool were in the downloaded project (they are not supposed to be - the Ant scripts are su

Re: Radiogroup with Enum value and option with NULL value

2013-01-18 Thread nquirynen
Hi, Thanks Taha, I solved it in the following way: I don't really want to add something to my Language enum. I replaced it with a "dummy" html radio input as you suggested. To make it a part of the whole radiogroup I had to add the name attribute. Now I also had to add the value attribute with a

Re: T5.4-alpha-2: Module Initialization Priority / Order

2013-01-18 Thread Steve Eynon
The priority ordering is lost when the call is handed over to RequireJS from pageinit:invokeInitializer(). There's a shed load of code on the server side to ensure the priority ordering is kept. The generated page init JSON is in the correct order. The initialisation code is called in the correct