Aw: Re: ExtVal: NullPointerException for meta data of UIViewParameter

2010-05-26 Thread mynewsgroups
Hi Gerhard, I would appreciate if you provide the current binaries. Can you give statement what the problem is? Did you add a bugfix adhoc? Thanks a lot, Tom - Original Nachricht Von: Gerhard Petracek gerhard.petra...@gmail.com An: MyFaces Discussion

Re: [Trinidad] PartialSubmit and Alert

2010-05-26 Thread Jozef Dropco
Thanks all, i got it working now. Jozef On 25.5.2010 23:29, Walter Mourão wrote: If using partial page rendering You can send some javascript from the server, using the ExtendedRenderKitService's addScript() method. Walter Mourão http://waltermourao.com.br http://arcadian.com.br

Re: Re: ExtVal: NullPointerException for meta data of UIViewParameter

2010-05-26 Thread Gerhard Petracek
hi tom, you can find the current version at [1]. currently it looks like a combination of EXTVAL-94 and a jsf/el issue. regards, gerhard [1] http://people.apache.org/~gpetracek/myfaces/extval/milestones/ http://www.irian.at Your JSF powerhouse - JSF Consulting, Development and Courses in

Aw: Re: ExtVal: NullPointerException for meta data of UIViewParameter

2010-05-26 Thread mynewsgroups
Hi Gerhard, in case of using maven what would be the repo url? http://people.apache.org/repo/m2-snapshot-repository is not up to date. Is it https://svn.apache.org/repos/asf? Tom - Original Nachricht Von: Gerhard Petracek gerhard.petra...@gmail.com An: MyFaces Discussion

Antwort: Re: Bottom Pagination in Trinidad Table

2010-05-26 Thread wolfgang . toepfer
Hi, Should be fairly easy to do, at least the following is what worked for us, here in pseudo notation: tr:table .. rangeChangeListener=#{yourController.yourRangeChangeListener} .. .. /tr:table and in yourController: public void yourRangeChangeListener(RangeChangeEvent event) { // do

Aw: Re: Re: ExtVal: NullPointerException for meta data of UIViewParameter

2010-05-26 Thread mynewsgroups
Hi, problem solved with 2.0.4-SNAPSHOT. Thanks, Tom - Original Nachricht Von: Gerhard Petracek gerhard.petra...@gmail.com An: MyFaces Discussion users@myfaces.apache.org Datum: 26.05.2010 08:33 Betreff: Re: Re: ExtVal: NullPointerException for meta data of UIViewParameter

Re: Re: Re: ExtVal: NullPointerException for meta data of UIViewParameter

2010-05-26 Thread Gerhard Petracek
hi tom, the npe is solved, because EXTVAL-94 allows input components without value-bindings. it leads to a skipped validation process. however, jsf shouldn't return null if there is a value-binding. - we should analyze this part of the issue. regards, gerhard http://www.irian.at Your JSF

Re: Trinidad dialog navigation issue - Help appreciated

2010-05-26 Thread Cédric Durmont
I don't think that dialog: links are supposed to work outside trinidad tags (tr:commandLink and tr:commandButton) Use tr: tags every time you open dialogs (at least you want to have the useWindow attribute, which is trinidad-only) Regards, Cedric 2010/5/25 Venkat Ramanan Viswanathan

AW: [Tobago] foreach in c:sheet

2010-05-26 Thread Abushammala, Hani (EXTERN: FTP)
Hello Udo, I want to add a dynamic panel to a column, which has many elements for each row in the sheet, that means the content of the panel for each row is different (like sheet in sheet). I could do it with programming of whole panel in java and binding it in the jsp, but i am looking now

Error with deploying portlet in uportal with portlet bridge

2010-05-26 Thread Yves Deschamps
I have this error: Caused by: javax.portlet.faces.BridgeException: BridgeImpl.init(): unable to determine Faces servlet web.xml mapping. at org.apache.myfaces.portlet.faces.bridge.BridgeImpl.init(BridgeImpl.java:204) at

MyFaces 2.0.0 - Problem of rendering Enum

2010-05-26 Thread John Wu
I'd say the issue exist in org.apache.myfaces.shared_impl.renderkit.getConvertedStringValue(FacesContext context, UIComponent component, Converter converter, Object value). In the case of rendering a selectRadio and the underlying model property type is an Enum, this method is called with the

Re: Error with deploying portlet in uportal with portlet bridge

2010-05-26 Thread Michael Freedman
You seem to have the Faces servlet defined twice: as Faces Servlet and faces while only having the Faces Servlet mapped to a path (*.jsf) -- see bold sections below. Alas, the bridge uses a simple parser which only expects to find one servlet defintion for Faces. Since faces is the last one

Re: Problem with ui:debug encoding

2010-05-26 Thread Cagatay Civici
Hi, PrimeFaces doesn't have a custom PartialResponseWriter, PrimeFaces 2.0.3 uses ResponseWriter's startCDATA endCDATA APIs which are standard so it should be fixed now. 2.0.3-SNAP not in 2.0.2 :) Cagatay On Tue, May 25, 2010 at 8:36 PM, Jakob Korherr jakob.korh...@gmail.comwrote: Hi Bruno,

Re: Need help on Trinidad integration with JSF 2.0 (Mojarra)

2010-05-26 Thread mavieira
I am getting this stack trace as well. Did you ever resolve this Venkat? Thanks, Mark Venkat Ramanan Viswanathan wrote: Yes I have the following in faces-config.xml default-render-kit-idorg.apache.myfaces.trinidad.core/default-render-kit-id Thanks Venkat On Sun, Apr 4,

Problem with MyFaces Trinidad absolute uri

2010-05-26 Thread Julian Osorio
Greetings. I'm having problems with Trinidad configuration. After adding the taglibs %...@taglib prefix=tr uri=http://myfaces.apache.org/trinidad% %...@taglib mailto:%...@taglib%20prefix=%22trh%22%20uri=%22http://myfaces.apache.org/tri nidad/html%22%25 prefix=trh

Re: MyFaces 2.0.0 - Problem of rendering Enum

2010-05-26 Thread Jakob Korherr
Hi John, The problem is that on f:selectItem / the attribute itemValue has to be of the same type as the property in the managed bean. In your case this is ClientIdType. However you are providing the String CardNumber as the value which is definitely not the same as the enum value