RE: Re: [Trinidad] Trinidad and Glassfish: resource servlet does not work

2010-01-06 Thread Rene van Wijk
No problems here, but i am not using myfaces, but the standard JSF implementation.   As you mentioned in your earlier mail this has to do with classloading. The standard JSF implementation is loaded using the Common Classloader (SYSTEM classloader for glassfish), which is loaded before the

Trinidad input file

2010-01-06 Thread Ângelo Dias
Hi folks, First of all, I would like to say sorry either if my question is too basic or if it was made in the wrong list. I´m trying the input file component and I´m confused about how to code the file upload. Since I have already the file input stream, is it enough to read the stream

Re: Trinidad input file

2010-01-06 Thread Matthias Wessendorf
Hello, 2010/1/6 Ângelo Dias agd...@live.it: Hi folks, First of all, I would like to say sorry either  if my question is too basic or if it was made in the wrong list. nope. the users@ list is correct I´m trying the input file component and I´m confused about how to code the file

Re: Trinidad input file

2010-01-06 Thread Scott O'Bryan
Angelo, Actually, Trinidad manages the input stream for you. I think the Tag Documentation available on the website will tell you how to use it. Scott Sent from my iPhone On Jan 6, 2010, at 4:25 AM, Ângelo Dias agd...@live.it wrote: Hi folks, First of all, I would like to say sorry

Re: [Trinidad] Chart DrillDown

2010-01-06 Thread Rafael Ribeiro
Hi Phillip Were you able to solve this issue? If so, how? I've googled it a lot but I only find ppl reporting this issue, never found anyone reporting the solution. best regards, Rafael Ribeiro Philipp Michel-2 wrote: Hello list, is here somebody who has bound successful a

Bad Bug: SelectOneMenu, SelectItems, _SystemItemsUtil, and the missing conversion

2010-01-06 Thread Ogrady, John
Java 1.5 MyFaces 1.1.7 Tomahawk 1.1.9 Spring 2.5.6 Weblogic 9.2.3 All I wanted to do was display a drop-down list of enums. It seemed simple enough, with examples all over the 'net. Apparently, myfaces has decided that using anything other than strings for a drop down is no - not yours. The

Re: Bad Bug: SelectOneMenu, SelectItems, _SystemItemsUtil, and the missing conversion

2010-01-06 Thread Jakob Korherr
Hi John, Use »itemValue=#{day}« and it will work. Regards, Jakob Korherr 2010/1/6 Ogrady, John john.ogr...@citi.com Java 1.5 MyFaces 1.1.7 Tomahawk 1.1.9 Spring 2.5.6 Weblogic 9.2.3 All I wanted to do was display a drop-down list of enums. It seemed simple enough, with examples all

PanelGrid Vs Html Table

2010-01-06 Thread Vinaya Tirikkovalluru
Hi, I am using t:panelGrid. Can I use html table instead? I can align the tables well with table I agree that using t:panelGrid would have the capability of rendering based on a variable. I am not using that any ways and will not be using it. I think instead of using nested

Re: PanelGrid Vs Html Table

2010-01-06 Thread Jakob Korherr
Hi, What version of MyFaces are you using? Regards, Jakob Korherr 2010/1/6 Vinaya Tirikkovalluru vinaya.tirikkovall...@converge.com Hi, I am using t:panelGrid. Can I use html table instead? I can align the tables well with table I agree that using t:panelGrid would have the

RE: Bad Bug: SelectOneMenu, SelectItems, _SystemItemsUtil, and the missing conversion

2010-01-06 Thread Ogrady, John
I do so love secret sauce answers. I'm not surprised that it was something I did (or didn't do). This is my first foray into JSF teritory after years of Spring MVC, Struts, and Webwork, and faces is by far the most frustrating framework of all. Thanks for the quick reply!

RE: PanelGrid Vs Html Table

2010-01-06 Thread Vinaya Tirikkovalluru
Tomahawk 1.1.9 -Original Message- From: sethfromaust...@gmail.com [mailto:sethfromaust...@gmail.com] On Behalf Of Jakob Korherr Sent: Wednesday, January 06, 2010 3:33 PM To: MyFaces Discussion Subject: Re: PanelGrid Vs Html Table Hi, What version of MyFaces are you using? Regards,

Re: Bad Bug: SelectOneMenu, SelectItems, _SystemItemsUtil, and the missing conversion

2010-01-06 Thread Jakob Korherr
You're welcome! Here's the explanation to your problem: You always have to set itemValue to an object with the same type as the value attribute of the surrounding t:selectXXX. This is also the type you have to write a converter for. In your case: t:selectOneMenu id=daysOfWeekList

Re: PanelGrid Vs Html Table

2010-01-06 Thread Jakob Korherr
I'm sorry, but that's not what I was asking. Are you using JSF (MyFaces Core) 1.1 or 1.2?? 2010/1/6 Vinaya Tirikkovalluru vinaya.tirikkovall...@converge.com Tomahawk 1.1.9 -Original Message- From: sethfromaust...@gmail.com [mailto:sethfromaust...@gmail.com] On Behalf Of Jakob

RE: PanelGrid Vs Html Table

2010-01-06 Thread Vinaya Tirikkovalluru
1.2 I there any advantage/disadvantage is using t:panelgrid Vs table -Original Message- From: sethfromaust...@gmail.com [mailto:sethfromaust...@gmail.com] On Behalf Of Jakob Korherr Sent: Wednesday, January 06, 2010 4:02 PM To: MyFaces Discussion Subject: Re: PanelGrid Vs Html Table I'm

Re: PanelGrid Vs Html Table

2010-01-06 Thread Jakob Korherr
Good, because in versions prior to JSF 1.2 you could not use any HTML inside f:view. It depends on what you want to do. So it's up to you. If you prefer to use table and you don't need any of the JSF-attributes of t:panelGrid then use table! Regards, Jakob Korherr 2010/1/6 Vinaya Tirikkovalluru

Re: PanelGrid Vs Html Table

2010-01-06 Thread Matt Cooper
If you need to support users that use assistive technology (e.g. screen readers) then be sure to specify summary= on the table element if the purpose of the table is solely for layout. If it is for a data table then the summary should describe the nature of the table in 1-3 sentences. Regards,