Re: AW: Stuck making JSF 2.0 work with MyFaces

2010-02-23 Thread Matthias Wessendorf
use Trinidad2 :-) On Tue, Feb 23, 2010 at 7:25 AM, cristiJ cristi_ju...@yahoo.com wrote: i checked out icefaces and primefaces. I think I'm going to wait untill Tomahawk will be released for JSF 2.0. Apache has done tremendous work so far. I hope you willl have time to upgrade Tomahawk soon

Re: AW: Stuck making JSF 2.0 work with MyFaces

2010-02-23 Thread Jakob Korherr
we're on it! 2010/2/23, cristiJ cristi_ju...@yahoo.com: i checked out icefaces and primefaces. I think I'm going to wait untill Tomahawk will be released for JSF 2.0. Apache has done tremendous work so far. I hope you willl have time to upgrade Tomahawk soon Jakob Korherr wrote: Maybe

RE: AW: Stuck making JSF 2.0 work with MyFaces

2010-02-23 Thread venkat.ramanan
Hi Is Trinidad 2 production quality ? Is the alpha release of Trinidad compatible with JSF 2.0 ? Thanks Venkat -Original Message- From: mwessend...@gmail.com [mailto:mwessend...@gmail.com] On Behalf Of Matthias Wessendorf Sent: Tuesday, February 23, 2010 2:55 PM To: MyFaces

Re: How to elegantly replace line breaks with BR tag?

2010-02-23 Thread Richard Yee
My suggestion is to use escape=false attribute in yhe outputText tag along with having the preand pre Added by the getter method (ie. getFormattedTamperingMsg) so you don't need the the panelGroup and the additional tags to output the pre tagsR Sent from my iPhone On Feb 22, 2010, at 1:05

Re: How to elegantly replace line breaks with BR tag?

2010-02-23 Thread Mike Kienenberger
If you're using facelets, a fairly straight-forward solution would be to define a facelet function to do the escaping and then wrap your result in it. t:outputText value=#{myfunctions:convertToHtml(currentRow.result)} / I think I did this years ago in a JSF project using StringEscapeUtils as

Tomahawk | Generate a JSP from Backing Bean

2010-02-23 Thread daniel ccss
Hi all, I have a question: Does anyone have an example of how to paint a JSP from a Backing Bean ( I´m using myfaces tomahawk.)? I have a table in the db that indicades what types of fields the JSP will have. For example 1 = t:inputText 1= t:inputText 2= h:selectOneMenu 3= t:commandLink I

Re: Tomahawk | Generate a JSP from Backing Bean

2010-02-23 Thread Jakob Korherr
hi, what jsf version are you using? 1.1, 1.2 or 2.0? Regards, Jakob 2010/2/23, daniel ccss danielcc...@gmail.com: Hi all, I have a question: Does anyone have an example of how to paint a JSP from a Backing Bean ( I´m using myfaces tomahawk.)? I have a table in the db that indicades what

Re: Tomahawk | Generate a JSP from Backing Bean

2010-02-23 Thread daniel ccss
Thanks, 1.2 why?? On Tue, Feb 23, 2010 at 9:58 AM, Jakob Korherr jakob.korh...@gmail.comwrote: hi, what jsf version are you using? 1.1, 1.2 or 2.0? Regards, Jakob 2010/2/23, daniel ccss danielcc...@gmail.com: Hi all, I have a question: Does anyone have an example of how to paint a

[TRINIDAD 1.0.12] LocaleSymbols* at LocaleElements*.js files are empty in 1.0.12 release

2010-02-23 Thread Rafa Pérez
Hi all, we have been having some problems with PPR since last update of Trinidad. Today, we have seen that Locale*.js files are empty and this is causing our problem. I think there have been some problems with packaging but, how is it possible that no one took care of this?? I think Trinidad

Re: [TRINIDAD 1.0.12] LocaleSymbols* at LocaleElements*.js files are empty in 1.0.12 release

2010-02-23 Thread Matthias Wessendorf
Hey, I just launched demo, all fine. JS in there, e.g: http://localhost:8080/trinidad-demo/adf/jsLibs/resources/LocaleElements_en1_0_11.js?loc=en however, the only problem is the invalid version. Will fix that ;-) -Matthias 2010/2/23 Rafa Pérez raja...@gmail.com: Hi all, we have been

Re: [TRINIDAD 1.0.12] LocaleSymbols* at LocaleElements*.js files are empty in 1.0.12 release

2010-02-23 Thread Rafa Pérez
Hi Matthias, yep, .JS are in there... but *inside you have this (1.0.12):* *var LocaleSymbols_en = new LocaleSymbols({ });* TrMessageFactory._TRANSLATIONS={ 'org.apache.myfaces.trinidad.validator.DoubleRangeValidator.NOT_IN_RANGE_detail':'The number must be between {2} and {3}.',

Regarding Trinidad 2.0

2010-02-23 Thread venkat.ramanan
Hi Is Trinidad 2 production quality ? Is the alpha release of Trinidad compatible with JSF 2.0 ? Thanks Venkat -Original Message- From: mwessend...@gmail.com [mailto:mwessend...@gmail.com] On Behalf Of Matthias Wessendorf Sent: Tuesday, February 23, 2010 2:55 PM To: MyFaces

Re: Tomahawk | Generate a JSP from Backing Bean

2010-02-23 Thread Jakob Korherr
great! So you can use JSTL tags (c:if or c:choose) to determine the component to be rendered! So something like this should work: c:if test=#{bean.componenttype == 1} h:outputText value=#{bean.value} / /c:if Regards, Jakob 2010/2/23, daniel ccss danielcc...@gmail.com: Thanks, 1.2

rowSpan for t:PanelGrid

2010-02-23 Thread Vinaya Tirikkovalluru
Hi, Did any of you implement the rowSpan/colSpan for t:panelGrid Thanks Vinaya This electronic message is intended only for the use of the individual(s) or entity(ies) named above and may contain information which is privileged and/or confidential. If you are not the intended

How do I specify an INVALID_detail for s:convertNumber ?

2010-02-23 Thread laredotornado
Hi, I'm using MyFaces 1.1.5 with Tomahawk 1.1.7. I have this inpur ... h:inputText id=perDriverFinancialAssistanceMaximum required=true value=#{FinancialAssistanceVariablesController.financialAidLimit.perLeaseMax} f:attribute name=invalidMsg

Re: Regarding Trinidad 2.0

2010-02-23 Thread Matthias Wessendorf
I'd not say production ready, but we use it. currently the ajax jsf2.0 is not in there. (therefore we labeled it as alpha...) On Tue, Feb 23, 2010 at 6:36 PM, venkat.rama...@thomsonreuters.com wrote: Hi Is Trinidad 2 production quality ?  Is the alpha release of Trinidad

Re: Regarding Trinidad 2.0

2010-02-23 Thread venkat.ramanan
Thanks. Currently we use trinidad 1.2. Is trinidad 2 backward portable with 1.2? Can we retain those pages and components as such while developing newer ones with 2.0? Thanks again - Original Message - From: mwessend...@gmail.com mwessend...@gmail.com To: MyFaces Discussion