Re: T5.4 - spinner zone overlay

2014-03-21 Thread Lenny Primak
Please create an issue on google code. Thanks. > On Mar 21, 2014, at 9:48 AM, Martin Nagl wrote: > > I found the solution. The event I was looking for is "events.zone.refresh". > See where it is triggered in module "t5/core/zone". > > @Lenny Primak > Thanx for pointing out the T5.4 branch of

Re: T5.4 - spinner zone overlay

2014-03-21 Thread Martin Nagl
I found the solution. The event I was looking for is "events.zone.refresh". See where it is triggered in module "t5/core/zone". @Lenny Primak Thanx for pointing out the T5.4 branch of Flowlogix library, I didn't notice it at first. Your mixin "ZoneLoadingSpinner" is exactly what I need, but there

Re: Dynamic property conduit

2014-03-21 Thread Lance Java
Agreed. Here's an example of creating a binding heavily based on the prop: binding. http://tapestry-stitch.uklance.cloudbees.net/mapbindingdemo On 21 Mar 2014 13:02, "Thiago H de Paula Figueiredo" wrote: > On Fri, 21 Mar 2014 06:22:32 -0300, Guillaume Bodet > wrote: > > Hi all, >> > > Hi! > >

Re: How to Declare JSONObject function ?

2014-03-21 Thread john c
I read the other example and comments, and this is what I changed: I edited the JSON params like this (removed JSONLiteral): options.put("start", "aaa");  In draganddrop.js I enclosed the function definition like this: T5.extendInitializers(function() { function aaa() {     alert();  }  }); T

Re: Dynamic property conduit

2014-03-21 Thread Thiago H de Paula Figueiredo
On Fri, 21 Mar 2014 06:22:32 -0300, Guillaume Bodet wrote: Hi all, Hi! Any idea where I should start? I think you're looking at the wrong part of Tapestry for the solution. I think the best solution would be to implement a new binding that would be heavily based on the prop one Tape

Dynamic property conduit

2014-03-21 Thread Guillaume Bodet
Hi all, We developed a templating system that allows a user to design a page (using CKEditor) and use tapestry properties to populate dynamic areas. The rendering is performed using a component and standard ${property} syntax. This is perfectly working, but raises an exception if the user uses

Re: How to Declare JSONObject function ?

2014-03-21 Thread Boris Horvat
Fir me the solution was to use ut without jsonliterl, just put the name of the fuction without brackets On 21 Mar 2014 04:31, "john c" wrote: > First, I am using the latest, Tapestry/Tapestry-JQuery versions: 5.3.7 / > 3.3.7. > > I created draganddrop.js and put it under webapp/js. It has a simpl