Re: using trinidad as non-default render-kit

2007-02-28 Thread Stefan Podkowinski
This is definitely harder than I expected. What about coupling the RenderingContext with the used RenderingKit? And droping the RenderingContext ThreadLocal based access in favour of FacesContext.getCurrentInstance().getRenderKit().getRenderingContext(). The RenderKitBase could probably extended

Re: Getting the Component ID from within getOnclick()

2007-02-28 Thread Danny Robinson
Sorry, I should have been clearer. In the renderer code on the server-side my component overrides the XhtmlRenderer.getOnclick() to insert some custom javascript. Within this method I'd like to be able to call getClientId() on the component to grab the id. Currently I'm having to use eval

Re: Getting the Component ID from within getOnclick()

2007-02-28 Thread Martin Marinschek
Well, if the component is not passed in, you can't. The question is if the method signature should be changed. regards, Martin On 2/28/07, Danny Robinson [EMAIL PROTECTED] wrote: Sorry, I should have been clearer. In the renderer code on the server-side my component overrides the

Client-side validation - enhance to match server-side

2007-02-28 Thread Danny Robinson
Guys, Would there be support for an enhancement to the client-side validation so that it behaves in the same way as the server-side logic? Meaning, we'd get rid of the javascript alert dialog and instead dyanamically show/hide the error messages in the page. If so, I'll raise a JIRA issue and

Re: Client-side validation - enhance to match server-side

2007-02-28 Thread Arash Rajaeeyan
may be you can use GWT compiler for client side validation as well, it is also under Apache 2 license. On 2/28/07, Danny Robinson [EMAIL PROTECTED] wrote: Guys, Would there be support for an enhancement to the client-side validation so that it behaves in the same way as the server-side logic?

Re: Client-side validation - enhance to match server-side

2007-02-28 Thread Matthias Wessendorf
are you talking about still using JS for the client side converter/validator stuff, but just don't use alert(), instead using a web2.0-ish dialog ? The validator/converter stuff isn't just an alert(). We have client side Converter (with getAsObject/String) and Validators (with validate) and

Question on skinning just 1 table component.

2007-02-28 Thread danny chen
Hi All, On my JSF page, I have multiple tables (tr:table). For one of the table, I want display it differently. I am currently passing in a value for styleClass. My question is how can I apply the skin to just that table. I don't want borders for the table. And I want the column header to

Re: Client-side validation - enhance to match server-side

2007-02-28 Thread Danny Robinson
I was thinking that instead of displaying alert, the messages would appear in the same place as they do in server-side. So keep the existing javascript validator/converter stuff but change where/how it is displayed. We'd probably have to render a hidden container for each field, which the

Re: Client-side validation - enhance to match server-side

2007-02-28 Thread Martin Marinschek
I've been reiterating the necessity for this time and again ;) - I'd be pretty much for an addition like this. regards, Martin On 2/28/07, Danny Robinson [EMAIL PROTECTED] wrote: I was thinking that instead of displaying alert, the messages would appear in the same place as they do in

Re: [maven] assembly

2007-02-28 Thread Matthias Wessendorf
Bernd? any suggestions? if not... see you Friday :-))) -Matthias On 2/28/07, Matthias Wessendorf [EMAIL PROTECTED] wrote: Hello, I started to add to the RELEASE branch an assembly project, which will allow us to publish Trinidad CORE in source and as binary, as well. Therefore we don't

Re: using trinidad as non-default render-kit

2007-02-28 Thread Adam Winer
Changing how we get the RenderKit would break a lot of code, so I'd be a big -1 on that. There's other parts of the ExtendedRenderKitService contract, and, yes, they'll be hard to enforce in general. Facelets could actually fix this quite elegantly by getting the renderKitId correct in

Re: Client-side validation - enhance to match server-side

2007-02-28 Thread Adam Winer
I'd be happy to see functionality like this too. The trickiest part is, I think, figuring out how to clear the messages. I agree with Matthias that we don't need GWT. We already have the client-side JS. It's just the code that decides to turn the messages into an alert that is the problem.

Re: @author tags

2007-02-28 Thread Adam Winer
I agree as well. There's something a little nice about @author tags as a way of giving credit to the people who aren't the obvious people on a project. But they're rarely kept up to date, and the implication of ownership is not very OSS-friendly. -- Adam On 2/26/07, Craig McClanahan [EMAIL

Re: @author tags

2007-02-28 Thread Simon Lessard
I'm +0 about it. I think it's nice to know who wrote a piece of code before you modify it, so you can ask a quick question to the author. The main example I can find in Trinidad is the use of Hashtable and Vector every now and then, was it because of the old 1.2 codebase or was synchronization

Re: Client-side validation - enhance to match server-side

2007-02-28 Thread Arash Rajaeeyan
the difference is with GWT, user can write java code for client side validation instead of JS. they can compile it with their own Java IDE. but I also agree that adding another dependency to MyFaces is not good, specially dependency to such a big project. On 3/1/07, Adam Winer [EMAIL