Re: reference 'dateField' object in javascript

2012-10-14 Thread Paul Stanton
From further debugging, it seems the object is 'lost in the ether' ie, there is no reference attached to it when it is created... Tapestry.Initializer.dateField = function(spec) { new Tapestry.DateField(spec); } It would be very easy to solve this via: Tapestry.Initializer.dateField = func

reference 'dateField' object in javascript

2012-10-14 Thread Paul Stanton
Hi all, I always thought you could attain a reference to the associated javascript object created by the 'Initializer' for tapestry components via the HTML element somehow? In this case I am looking for the "Tapestry.DateField" javascript object for my field "selectedDateElem" tml:

Re: Change property names on class level without renaming the var?

2012-10-14 Thread Bob Harner
I'm not sure I understand your question, but you can have a global "app.properties" file in your WEB-INF directory. It's a good place to put properties that are needed by more than one page. On Sun, Oct 14, 2012 at 5:34 PM, membersound wrote: > Hi, > > I know I can rename a backend property by cr

Re: tapestry5-highcharts available

2012-10-14 Thread bhorvat
Muhammad Gelbana wrote > I reckon highcharts license doesn't fit in commercial applications. Not really related to the problem here :) but yea the highchart should be paid depending on the requirements. The tapestry-highchart is just a wrapper to help you integrate you application and the highch

Change property names on class level without renaming the var?

2012-10-14 Thread membersound
Hi, I know I can rename a backend property by creating a *.properties file for a page and use property-label=new name. But if let's say I have a product class with timestamp variable, and want it to be shown everywhere on every page as "creation date". Then I have to create a properties file for

Re: tapestry5-highcharts available

2012-10-14 Thread Muhammad Gelbana
I reckon highcharts license doesn't fit in commercial applications. On Sun, Oct 14, 2012 at 10:47 PM, bhorvat wrote: > if the snapshot repository is not working does anyone have any idea when it > will work as I need the snapshot version due to the fix it contains > > thanks for the assistance >

Re: tapestry5-highcharts available

2012-10-14 Thread bhorvat
if the snapshot repository is not working does anyone have any idea when it will work as I need the snapshot version due to the fix it contains thanks for the assistance -- View this message in context: http://tapestry.1045711.n5.nabble.com/tapestry5-highcharts-available-tp5606181p5716889.htm

Re: tapestry5-highcharts available

2012-10-14 Thread François Facon
hi Boris, For the moment, the snapshot version of this lib is not deployed. For release version, see http://nexus.pullrequest.org/content/repositories/releases/org/got5/tapestry5-highcharts/ Regards François 2012/10/14 bhorvat : > The version 1.2.0-SNAPSHOT that has a critical fix for the issue

Re: tapestry5-highcharts available

2012-10-14 Thread bhorvat
The version 1.2.0-SNAPSHOT that has a critical fix for the issue when setting production=true is not available. Does anyone have any idea where I can find the url for the repository? -- View this message in context: http://tapestry.1045711.n5.nabble.com/tapestry5-highcharts-available-tp5606181

RE: EventLink parameters

2012-10-14 Thread Lance Java
It looks like you're trying to do too much logic in a template again. Write a getter for your logic and access the simplified property in your template. -- View this message in context: http://tapestry.1045711.n5.nabble.com/EventLink-parameters-tp5716874p5716886.html Sent from the Tapestry - Us

Re: hmac sample

2012-10-14 Thread Howard Lewis Ship
On Sat, Oct 13, 2012 at 4:22 AM, Bob Harner wrote: > Use any long, random, private string of characters, just like you'd > use for a secure password or pass phrase. > > From Wikipedia: "The cryptographic strength of the HMAC depends upon > the size of the secret key that is used. The most common a

Re: Custom Component Id Other than Class Name

2012-10-14 Thread Lance Java
If you knew what you were doing, you could decorate the ComponentClassResolver. Warning: experts only ;) I suggest you download the tapestry sources and take a look at ComponentClassResolverImpl before attempting this. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Custo