Re: [Trinidad 1.0.11] Skinning: extends is not working (or at least, not fully)

2010-02-02 Thread Bart Kummel
Hi Rafa, I have been struggling with the extends functionality as well. My experience is the same as yours: it doesn't work. I asked nearly the same question as you on this list about a year ago, but I didn't get a satisfying answer. I think the best way to extend a skin is just copying the CSS

Antwort: Re: Re: Re: Customizing scroller by using t:dataTable with t:dataScroller

2010-02-02 Thread Klaus SCHUSTER
Hi, Thanks, for the actionListener tip in the t:commandSortHeader. The only question I have: where do you get the uidata in the actionListener from? Because the only uidata I have stored is from the HTMLDataTable, and this index (by using getFirst()) is again, the index of the whole unsorted

Re: SelectOneRadio selectitem label

2010-02-02 Thread Walter Mourão
You can add *white-space: pre* to the style and add line breaks to the label. Walter Mourão http://waltermourao.com.br http://arcadian.com.br http://oriens.com.br On Tue, Feb 2, 2010 at 12:46 AM, C J cjs_b...@yahoo.com wrote: Trinidad provides this with tr:table: (

Unable to find a default provider

2010-02-02 Thread Dj Apal [GR]
Hello all. I'm trying to port a project of mine from jsf 1.1 to jsf 2. I also changed Hibernate to use annotations instead of xml files. I use myfaces 2 beta and trinidad 2 alpha. Still haven;t changed anything at my web configuration. I get this error. Anyone knows sth about that? Thnx!

[TRINIDAD] [SEAM] tr:commandButton does not fire in tr:form

2010-02-02 Thread A. Nieves
Hello, I have a very small page using Trinidad 1.2.12, Seam 2.2, and Facelets 1.1.15 (it is configured but I'm not using any Facelets tags in the page) the page displays correctly but the *tr:commandButton* doesn't do anything. I've started the server in DEBUG mode and the action method is never

Re: [TRINIDAD] [SEAM] tr:commandButton does not fire in tr:form

2010-02-02 Thread Matthias Wessendorf
you need to use tr:document. that component is responsible to render out the JS/CSS for Trinidad If you don't want tr:document you have to use trh:head/body. Please read the documentation on them. thx, matthias On Tue, Feb 2, 2010 at 5:49 PM, A. Nieves daraii.t...@gmail.com wrote: Hello, I

Re: [Trinidad 1.0.11] Skinning: extends is not working (or at least, not fully)

2010-02-02 Thread Rafa Pérez
Hi Bart, it seems that it's working now, and it's extending the base skin as it states in documentation. I think the problem was that we had a huge CSS with some syntax errors and the merged CSS had this errors too (although I wasn't able to find them... the base CSS was really huge, trust me).

Re: [TRINIDAD] [SEAM] tr:commandButton does not fire in tr:form

2010-02-02 Thread A. Nieves
Sorry Matthias, I've also tried using the trh:html/trh:head/trh:body combo but I'm having the same problem. - !DOCTYPE composition PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN

Re: [TRINIDAD] [SEAM] tr:commandButton does not fire in tr:form

2010-02-02 Thread Matthias Wessendorf
hrm, tr:document ? i see your web.xml has the Trinidad filter and its ressource servlet. we have some infos on the wiki. checked there ? Also there were some mails, searched the archives of this list ? (and the dev@, though the users@ is the correct list...) -Matthias On Tue, Feb 2, 2010 at

Re: [TRINIDAD] [SEAM] tr:commandButton does not fire in tr:form

2010-02-02 Thread A. Nieves
I tried also with tr:document, same problem. My web.xml was taken from the wiki, using the exact same order of the servlets/filters/listeners. I found a similar problem in the mailing list but they seem to be unrelated to this one (different version of Trinidad and is marked as resolved in the

Re: [TRINIDAD] [SEAM] tr:commandButton does not fire in tr:form

2010-02-02 Thread Matthias Wessendorf
+1 also, what does firebug say? on pressing the submit button, is at least some JS exectued ? -Matthias On Tue, Feb 2, 2010 at 7:43 PM, A. Nieves daraii.t...@gmail.com wrote: I tried also with tr:document, same problem. My web.xml was taken from the wiki, using the exact same order of the

Re: [TRINIDAD] [SEAM] tr:commandButton does not fire in tr:form

2010-02-02 Thread A. Nieves
I placed a breakpoint using Firebug on the submitForm function of the Common1_2_12.js but the function is not called when I press the tr:commandButton. On Tue, Feb 2, 2010 at 2:46 PM, Matthias Wessendorf mat...@apache.orgwrote: +1 also, what does firebug say? on pressing the submit button, is

Help figuring out why my error message is not displaying

2010-02-02 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7. I have verified in my controller that this method is being called with non-empty parameters ... protected void addErrorMessage(final String inputId, final String errMsg) { final FacesMessage message = new

Re: Help figuring out why my error message is not displaying

2010-02-02 Thread Mike Kienenberger
Are you certain that inputId = component.getClientId(context)? You should try putting a global messages tag on the page so you can determine if it's showing up with a different client id. You can also manually specify null or a specific client id in addMessage(). On Tue, Feb 2, 2010 at 3:23 PM,

Re: Help figuring out why my error message is not displaying

2010-02-02 Thread laredotornado
Hi, I tried changing the messages display to t:messages globalOnly=true layout=table showDetail=true showSummary=true styleClass=error/ and my function to protected void addErrorMessage(final String inputId, final String errMsg) { final

Re: Help figuring out why my error message is not displaying

2010-02-02 Thread Mike Kienenberger
That looks like it should work. You might try globalOnly=false in a second component just to be sure. Otherwise, you'll have to step through it with a debugger and figure out a) if your code is being called b) what the FacesMessage looks like that's being constructed On Tue, Feb 2, 2010 at 4:33

Re: [TRINIDAD] [SEAM] tr:commandButton does not fire in tr:form

2010-02-02 Thread A. Nieves
I uploaded a test project (split in war/ear/ejb) for Weblogic 10.3 (the environment I'm using): https://docs.google.com/leaf?id=0B1ms0mMJOqpPNWE4OThhNjEtMzA3OS00NDBlLWFiODUtOGNkMTUxYzAzYzk4hl=en If I need to create a project with different specifications let me know. I have the posTestJSF.jspx

Re: [TRINIDAD] [SEAM] tr:commandButton does not fire in tr:form

2010-02-02 Thread A. Nieves
Right after I sent the test project I found the culprit. I was using a hyphen in the id of the tr:form and it generated a invalid javascript function to validate the form (_pos-formValidator). I didn't notice the javascript error until now. On Tue, Feb 2, 2010 at 7:18 PM, A. Nieves

Re: [TRINIDAD] [SEAM] tr:commandButton does not fire in tr:form

2010-02-02 Thread Matthias Wessendorf
so, works ? On Wed, Feb 3, 2010 at 12:46 AM, A. Nieves daraii.t...@gmail.com wrote: Right after I sent the test project I found the culprit. I was using a hyphen in the id of the tr:form and it generated a invalid javascript function to validate the form (_pos-formValidator). I didn't notice

Re: [Trinidad] new skin and new demo

2010-02-02 Thread Bart Kummel
Hi all, I just posted a short article about the new Cassablanca skin for Trinidad at my blog: http://www.bartkummel.net/journal/2010/2/2/new-skin-for-trinidad.html. Best regards, Bart Kummel On Sat, Jan 30, 2010 at 12:19, Matthias Wessendorf mat...@apache.orgwrote: Hello, as FYI, the new