Re: [T5.1]Tweaking Tapestry.ElementEffect

2009-05-21 Thread Igor Drobiazko
Take a look into this thread: http://www.nabble.com/How-do-I-remove-the-yellow-fade-that-occurs-when-updating-the-Zone-component--tt23493373.html#a23493373 On Fri, May 22, 2009 at 8:26 AM, nille hammer wrote: > Hello List, > > I have made the step from serverside-only webapps to using ajax now.

[T5.1]Tweaking Tapestry.ElementEffect

2009-05-21 Thread nille hammer
Hello List, I have made the step from serverside-only webapps to using ajax now. Doing this two questions came up. Of which the first one is: I have a t: zone with update="slideup" and show="slidedown". I'd like to tweak the duration of those two effects like with the original Scriptaculous eff

Re: [T5.1] Radio buttons, Labels, & Loops?

2009-05-21 Thread Thiago H. de Paula Figueiredo
Em Thu, 21 May 2009 18:38:34 -0300, xfile80303 escreveu: Thanks Thiago! You're welcome! That does work, but I'm a bit surprised this, seemingly common, usecase is not supported natively by Tapestry. Components declared inside a loop are always hard to get a reference to them . . . Anyw

Re: [T5.1] Radio buttons, Labels, & Loops?

2009-05-21 Thread xfile80303
Thanks Thiago! That does work, but I'm a bit surprised this, seemingly common, usecase is not supported natively by Tapestry. Cheers, Levi Thiago H. de Paula Figueiredo wrote: > > Em Wed, 20 May 2009 19:19:16 -0300, xfile80303 > escreveu: > >> Hi all, > > Hi! > >> > index="radioIndex"> >

Re: t5: printing?

2009-05-21 Thread Sven Homburg
it is also possible to print PDFs non-interactive via adobe reader. with regards Sven Homburg Founder of the Chenille Kit Project http://www.chenillekit.org 2009/5/21 Ulrich Stärk > You could also have the server running the webapp print to a networked > printer using some LPR implementation

Re: t5: printing?

2009-05-21 Thread Ulrich Stärk
You could also have the server running the webapp print to a networked printer using some LPR implementation and a print format your printer understands (like PostScript, PCL or PDF (newer printers understand PDF directly)). Uli Angelo Chen schrieb: Hi Thiago, You are right about this printi

[T5.1] Locale - possible to revert to cookies?

2009-05-21 Thread immutability
Hi everyone, now that Tapestry 5.1.0.5 is encoding the selected locale in URL rather than using cookie for this purpose, is it still possible to somehow configure Tapestry to use cookies as in 5.0.x? This way worked better for our application (i.e. being "hidden" from the URL and more "permanent"

Re: T5 - Chenillekit Quartz & Services

2009-05-21 Thread Christian Senk
Don't know how you use the JobDetail in the Object implementing the Job interface by Quartz but in my case the following call: trigger.setJobDataMap(jobDetail.getJobDataMap()); was dispensable :) But this accidental i think. Nice weekend to all readers ^.^ Borut Bolčina schrieb: Thanks!

Re: T5 - Chenillekit Quartz & Services

2009-05-21 Thread Borut Bolčina
Thanks! jobDetail = new JobDetail("AccountRemoverJob", Scheduler.DEFAULT_GROUP, AccountRemoverJob.class); jobDetail.getJobDataMap().put("accountRemover", accountRemover); trigger.setJobDataMap(jobDetail.getJobDataMap()); did the trick. -Borut 2009/5/21 Christian Senk

Re: t5: printing?

2009-05-21 Thread Daniel Jue
I also like Dynamic Jasper, mostly because I find procedurally generated reports less fragile than using templates.  It does a decent job and gets the info into the user's hands, and is easier than straight Jasper Reports.  Also I use the same algorithm to generate PDF and XLS reports (Dynamic Jasp

Re: Authentification in Tapestry

2009-05-21 Thread Thiago H. de Paula Figueiredo
On Thu, May 21, 2009 at 12:50 PM, Thibaut Gadiolet wrote: > Hi, Hi! > I am creating a web application using Tapestry for the GSoC. > I was wondering what is best way to fit security requirements of a mere > application (login/password/roles). This has been discussed in this list before. Check t

Authentification in Tapestry

2009-05-21 Thread Thibaut Gadiolet
Hi, I am creating a web application using Tapestry for the GSoC. I was wondering what is best way to fit security requirements of a mere application (login/password/roles). How to keep and pass the user data from page to page ? Should I use Tapestry mechanism to check access rights ? Like OnActi

Re: t5: printing?

2009-05-21 Thread Ivano Luberti
Why not generating a PDF using something like iText ? In this way there would be no platform dependence ? Angelo Chen ha scritto: > Hi Thiago, > > You are right about this printing option in a web app. printing is often > needed in an ERP like app, say, we might make an POS using tapestry5, it > l

Re: t5: printing?

2009-05-21 Thread Thiago H. de Paula Figueiredo
On Thu, May 21, 2009 at 11:42 AM, Angelo Chen wrote: > Hi Thiago, Hi! > maybe if we can force > the user to use IE then an activeX loaded in IE might solve this problem. Please do not do that. ActiveX is a very bad idea, specially about browser security, and forcing your web application users

Re: t5: printing?

2009-05-21 Thread Angelo Chen
Hi Thiago, You are right about this printing option in a web app. printing is often needed in an ERP like app, say, we might make an POS using tapestry5, it looks very possible except the printing of invoices, maybe if we can force the user to use IE then an activeX loaded in IE might solve this

Re: T5 - Chenillekit Quartz & Services

2009-05-21 Thread Christian Senk
Hi, i recently used this module by chenillekit also. I think you use the JobDataMap in a wrong way. Instantiate the JobDetail and then use the JobDataMap from the jobDetail. jobDetail = new JobDetail("AccountRemoverJob", Scheduler.DEFAULT_GROUP, AccountRemoverJob.class); jobDetail.getJobDataM

Re: T5 - Chenillekit Quartz & Services

2009-05-21 Thread Borut Bolčina
Hi, I am trying to get a reference to one of my services in the class which implements the Job interface, but getting NPE because AccountRemover accountRemover = (AccountRemover) map.get("accountRemover"); accountRemover.removeOldNonVerifiedAccounts(); accountRemover is null. AppModule.java ===

Re: t5: printing?

2009-05-21 Thread Thiago H. de Paula Figueiredo
On Thu, May 21, 2009 at 4:51 AM, Angelo Chen wrote: > hi, Hi! > Thanks for all the replies. the need is really simple,  just like an > invoicing program, when the transaction is done, prints a receipt without > user clicking anything, desktop app does this easily, not so sure about > browser ba

Re: Has anyone used TreeGrid?

2009-05-21 Thread Thiago H. de Paula Figueiredo
On Thu, May 21, 2009 at 7:00 AM, Newham, Cameron wrote: > TreeGrid: > http://code.google.com/p/tapestry5-treegrid/ > Are there any examples of usage? I tried to use it, but I gave up. The lack a tree node model and example were overkill to me. I implemented something similar in the Ars Machina Pr

Has anyone used TreeGrid?

2009-05-21 Thread Newham, Cameron
TreeGrid: http://code.google.com/p/tapestry5-treegrid/ Are there any examples of usage? ** Experience the British Library online at www.bl.uk The British Library's new interactive Annual Report and Accounts 2007

Re: t5: printing?

2009-05-21 Thread Angelo Chen
hi, Thanks for all the replies. the need is really simple, just like an invoicing program, when the transaction is done, prints a receipt without user clicking anything, desktop app does this easily, not so sure about browser based app. will give all those a try, thanks. angelo Otho wrote: >

T5: Chenillekit: Datepicker is hidden behind window

2009-05-21 Thread Inge Solvoll
Hi! I'm using the chenillekit window to display a form wrapped in a zone inside the window. When I put a ck/DateTimeField inside the form, the datepicker is hidden behind the window. I can see it when I drag the window away. See the code below. I haven't checked if the zone part is relevant, I thi