Re: t5: printing?

2009-05-20 Thread Otho
The flying saucer is quite neat. https://xhtmlrenderer.dev.java.net/ Under the hood it uses iText, but is a lot easier to setup and use than itext directly or jasper reports. I use a freemarker html template styled with css for the layout and databinding and xhtmlrenderer does the rest. You can ju

Re: New T5 blog

2009-05-20 Thread Inge Solvoll
New blog entry, this time I've tried to improve/simplify a Chenillekit mixin. Check out my OnEvent mixin here: http://tinybits.blogspot.com/2009/05/simple-onevent-mixin.html On Fri, May 15, 2009 at 11:20 AM, Inge Solvoll wrote: > > http://tinybits.blogspot.com/2009/05/update-zone-on-any-client-s

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

2009-05-20 Thread Thiago H. de Paula Figueiredo
Em Wed, 20 May 2009 19:19:16 -0300, xfile80303 escreveu: Hi all, Hi! but that complains about the id "radio_${radioIndex}" not being valid (I suppose variable expansion is not taking place here). You're right: you can't define a t:id (component id) dynamically. On the other han

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

2009-05-20 Thread xfile80303
Hi all, I've a seemingly simple question which I've been struggling with, and haven't found any documentation or discussion about it. I simply want to create a dynamic set of radio buttons with labels, but I'm not sure how to do it. How do I bind the label to the radio button

Re: [Tapestry Central] Last call: Tapestry Webinar (Thu May 21)

2009-05-20 Thread Howard Lewis Ship
The links were stripped out of the mail, try reading the blog entry directly: http://tapestryjava.blogspot.com/2009/05/last-call-tapestry-webinar-thu-may-21.html On Wed, May 20, 2009 at 9:08 AM, Zheng, Xiahong wrote: > Howard, I don't see a registration link. > > -Original Message- > Fr

Re: [t5] Call Form.recordError() from a Service

2009-05-20 Thread Christian Senk
Thanks, that helped me alot. It works now similar to - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apache.org

Re: Cleaning up AJAX dashboard

2009-05-20 Thread Chuck Kring
Thanks. Thiago H. de Paula Figueiredo wrote: Em Mon, 18 May 2009 13:44:44 -0300, Chuck Kring escreveu: Hi everybody, Hi! I need to cleanup the persistent fields when the page is no longer in use and I'm considering using the window onunload event and a hidden eventlink to trigger the pa

RE: [Tapestry Central] Last call: Tapestry Webinar (Thu May 21)

2009-05-20 Thread Zheng, Xiahong
Howard, I don't see a registration link. -Original Message- From: Howard [mailto:hls...@gmail.com] Sent: Wednesday, May 20, 2009 11:50 AM To: users@tapestry.apache.org Subject: [Tapestry Central] Last call: Tapestry Webinar (Thu May 21) Formos is sponsoring a live Tapestry Webinar on Ma

[Tapestry Central] Last call: Tapestry Webinar (Thu May 21)

2009-05-20 Thread Howard
Formos is sponsoring a live Tapestry Webinar on May 21st. I'll be presenting a 35 - 40 minute introduction to Tapestry 5, followed by live Q&A. I'll be focusing on the big-picture issues about what makes Tapestry useful, unique and fun. If you've been curious about what Tapestry is, or want a chanc

Re: Encoding of single quotes for an ajax request using Internet Explorer

2009-05-20 Thread Ciaran Wood
I've created this issue: https://issues.apache.org/jira/browse/TAP5-714 Ciaran Wood On 20/05/2009 4:16pm, "Howard Lewis Ship" wrote: > Please add an issue for this. > > On Wed, May 20, 2009 at 5:18 AM, Ciaran Wood wrote: >> I¹ve encountered what I think is a bug in the rendering of an ajax r

Re: Encoding of single quotes for an ajax request using Internet Explorer

2009-05-20 Thread Howard Lewis Ship
Please add an issue for this. On Wed, May 20, 2009 at 5:18 AM, Ciaran Wood wrote: > I¹ve encountered what I think is a bug in the rendering of an ajax response. > Basically, we¹re returning a block that contains a textfield component. The > value of that textfield component is something with a si

Re: Zone update on any client side event

2009-05-20 Thread kace
quick edit.. public Block onPerformSearch(String value) { return tfblock; } should be public Block onPerformSearch(String value) { valuee = value; return time2Block; } anyway, anyone else using that component? ..kace -- View this message in context: http://www.nabb

Zone update on any client side event

2009-05-20 Thread kace
Hi fellas, Im trying to make use of the component [update a zone on any client side event] available at the following blog: http://tinybits.blogspot.com/ The code for zoneupdater.java and zoneupdater.js can be found there. the tml and java code for usage can be found below: ---

Encoding of single quotes for an ajax request using Internet Explorer

2009-05-20 Thread Ciaran Wood
I¹ve encountered what I think is a bug in the rendering of an ajax response. Basically, we¹re returning a block that contains a textfield component. The value of that textfield component is something with a single quote in it, for example ³o¹reilly². The response markup for that textfield is: <\/i

Re: [t5] Call Form.recordError() from a Service

2009-05-20 Thread Kristian Marinkovic
i have a ApplicationStateObject (written and read via the ApplicationStateManager) to store the messages i want to display on the login page where it is displayed by a Errors component. i think there are numerous other possibilities to do that :) g, kris Christian Senk 20.05.2009 12:44 B

Re: t5: printing?

2009-05-20 Thread Borut Bolčina
One way of doing it is by generating PDF. See http://wiki.apache.org/tapestry/Tapestry5HowToCreateADynamicPDF which uses iText. You can use JasperReports. There is http://www.chenillekit.org/chenillekit-reports/howto_reports.htmlbut the documentation is non existing. I haven't used it, I just kno

Re: [Tapestry 5.1.0.5] - GRID - How Override the sorting images ?

2009-05-20 Thread GMAIL1
Exactly, it works Many Thanks ! Antonio Joost Schouten (mailing lists) escribió: you just have to add some css: table.t-data-grid thead tr th a img { display:none !important; } table.t-data-grid thead tr th a { display:block; width:10px; height:10px; } table.t-data-grid t

[t5] Call Form.recordError() from a Service

2009-05-20 Thread Christian Senk
Hi, i like to redirect a request with insufficient privileges to a login page. In that case i wrote an AccessControlDispatcher like this one: http://wiki.apache.org/tapestry/Tapestry5HowToControlAccess The login page contains a form component with an error section. I like to redirect to this pa

RE: again on webservices

2009-05-20 Thread Alfie Kirkpatrick
If you are after full SOAP web service support it might make more sense to wire in a framework like Axis or Glassfish Metro directly into web.xml and not tie it to Tapestry pages per se. Which does raise a follow up question... has anyone successfully wired Tapestry IOC with a web service framewor