Re: WARN [HtmlRendererUtils]There should always be a submitted value

2010-03-29 Thread Dave
After you commit the patch, could you send out a message. I need to grab the patch.   Thanks, Dave --- On Mon, 3/22/10, Jakob Korherr jakob.korh...@gmail.com wrote: From: Jakob Korherr jakob.korh...@gmail.com Subject: Re: WARN [HtmlRendererUtils]There should always be a submitted value To:

Re: Tutorial: MyFaces 2 on Google App Engine

2010-03-29 Thread Matthias Wessendorf
Very cool! thx, Ali! Do you mind to put this tutorial to our side as well? -Matthias On Sat, Mar 27, 2010 at 11:54 PM, Ali Ok al...@aliok.com.tr wrote: Since MyFaces 2 Beta-3 (includes Google App Engine support) is released, I post a tutorial on my blog: MyFaces 2 on Google App Engine :

Re: Tutorial: MyFaces 2 on Google App Engine

2010-03-29 Thread Ali Ok
Do you mind to put this tutorial to our side as well? OK, it would be great :) I will convert it to APT format and send a patch (probably next week). Greetings, Ali On Mon, Mar 29, 2010 at 9:49 AM, Matthias Wessendorf mat...@apache.orgwrote: Very cool! thx, Ali! Do you mind to put this

Re: WARN [HtmlRendererUtils]There should always be a submitted value

2010-03-29 Thread Jakob Korherr
Hi Dave, Yes sure! However there have been objections on the jira issue to remove the warning, because it is usefull for other cases. It would be great if you could explain you situation in more detail or maybe even add a small test webapp to the JIRA issue at [1]. Thanks! Regards, Jakob [1]

[Trinidad] [Tomahawk] Horizontal Panel Navigation

2010-03-29 Thread omid p
Subject : tomahawk Horizontal panelNavigation2 Hi, I'm using tomahawk, Facelet and trinidad together when i want to use Horizontal panelNavigation value of submenus generate twice but tomahawk without trinidad works corecctly is this bug or what ? and somthing wierd , below code generates

[Trinidad] Skinning: Change only one occurence of a component

2010-03-29 Thread schneidc
Hi, I want to change the width of a tr:selectOneChoice, so it isn't so narrow when empty. tr:selectOneChoice inlineStyle=width: 100px doesn't do the trick as the actual menu is embedded in a table and the style get's applied on the table and not the menu itself. So I figured out that I should

[Trinidad] Chart export

2010-03-29 Thread Walter Mourão
Hi folks, I need to get the generated SVG in the server to create a PNG. How do I get the current rendered char ( SVG ) in the server side ? Thanks in advance, Walter Mourão http://waltermourao.com.br http://arcadian.com.br http://oriens.com.br

ConnectionException validating XML using t: panelTabbedPane [SEC=UNCLASSIFIED]

2010-03-29 Thread Rob . McAuliffe
Hi, I'm trying to use the Tomahawk panelTabbedPane tag on a project that already has some working tomahawk (tomahawk 1.1.9; jsf 1.1; java 1.6) tags. It seems that the code for this tag is trying to validate the configuration in the web.xml file, and in doing so, is looking for the DTD, for

Re: ConnectionException validating XML using t: panelTabbedPane [SEC=UNCLASSIFIED]

2010-03-29 Thread Leonardo Uribe
Hi javax.servlet api jar should provide this dtd (maybe your web container is not providing this dtds). In this case tomahawk try to get it, but it can't see it. Try put this file under your webapp classpath: javax/servlet/resources/web-app_2_3.dtd That should work. The other alternative is

Re: ConnectionException validating XML using t: panelTabbedPane [SEC=UNCLASSIFIED]

2010-03-29 Thread Rob . McAuliffe
Thanks Leonardo. I've managed to work out how to bypass it: I set the org.apache.myfaces.CHECK_EXTENSIONS_FILTER value to false (I basically read the source code to find what I needed to do) to tell tomahawk to not validate the filter configuration. This neatly side-steps the issue.. although