RE: Google summer of code

2005-07-13 Thread Broekelmann, Mathias
Hi Martin, Thank´s for the info. I was already wondering about the few response for the new datatable implementation. Hopefully it´s because happy users don´t cry ;)) Cheers, Mathias -Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005

RE: Why is immediate=true default for HtmlCommandSortHeader

2005-07-08 Thread Broekelmann, Mathias
header does not normally have the intention to submit his entries. WDYT? -Manfred 2005/7/7, Broekelmann, Mathias [EMAIL PROTECTED]: Hi, Does anyone know why the immediate flag defaults to true for the sortheader component? IMO we should use the usual default

RE: tree2 expand/collapse graphic and HtmlRenderUtils.writeIdIfNecessary

2005-07-07 Thread Broekelmann, Mathias
Hi, Try to prefix the generated id from context.getViewRoot().createUniqueId() with something else. Mathias -Original Message- From: Mario Ivankovits [mailto:[EMAIL PROTECTED] Sent: Thursday, July 07, 2005 9:35 AM To: MyFaces Development Subject: tree2 expand/collapse graphic and

Why is immediate=true default for HtmlCommandSortHeader

2005-07-07 Thread Broekelmann, Mathias
Hi, Does anyone know why the immediate flag defaults to true for the sortheader component? IMO we should use the usual default false for the immediate attribute. Mathias

RE: [jira] Commented: (MYFACES-228) Sortheader functionality does not work if datatable contains editable components

2005-07-07 Thread Broekelmann, Mathias
Hi Sean, Have you tried my latest patch for htmldatatable? It should work with a sortheader and immediate=false Mathias -Original Message- From: sean schofield (JIRA) [mailto:[EMAIL PROTECTED] Sent: Thursday, July 07, 2005 5:26 PM To: dev@myfaces.apache.org Subject: [jira]

RE: Outstanding webapp issues

2005-07-06 Thread Broekelmann, Mathias
I´m currently working on the datatable and have allready fixed some issues. Sean was a little bit fast in commiting my patch. I will post a working implementation in the next minutes or hours :) Mathias -Original Message- From: Bruno Aranda [mailto:[EMAIL PROTECTED] Sent:

UIData...

2005-07-06 Thread Broekelmann, Mathias
Hi, I love to work under pressure which is what I do in every normal project at these times :) Ok lets see what the new implementation fixes or not. I´ve done a lot of tests but I`m sure that´s not enough. So it´s up to you to to test it in your applications. Please take a look at the bug 305

RE: Why HtmlDataTablePhaseListener?

2005-06-02 Thread Broekelmann, Mathias
event. Seems like this is rather an aliasbean issue. Sylvain, are you listening? -Manfred 2005/5/30, Broekelmann, Mathias [EMAIL PROTECTED]: Hi, The x:datatable component uses a phase listener (HtmlDataTablePhaseListener) for validation issues. I don't know why this is necessary

Why HtmlDataTablePhaseListener?

2005-05-30 Thread Broekelmann, Mathias
Hi, The x:datatable component uses a phase listener (HtmlDataTablePhaseListener) for validation issues. I don't know why this is necessary but it causes problems when a aliased bean (through aliasbean component) is used in a nested datatable. Due to the implementation of the aliasbean component

RE: Why HtmlDataTablePhaseListener?

2005-05-30 Thread Broekelmann, Mathias
Hi Manfred, There is no way to make this sure other than by means of this phase listener, because the render phase can be initiated by different incidents (see Lifecycle). Is it not possible to use the HtmlDataTable.encodeBegin(FacesContext) in the HtmlDataTable implementation? As far as I

RE: Why HtmlDataTablePhaseListener?

2005-05-30 Thread Broekelmann, Mathias
Hi, Is there any JIRA issue which reported the bug You have solved? That would help a little bit to find the cause. What is the exact problem with the alias bean? You said it was not there during the processing of the phase listener. Do you get an exception because of that? Yes a NPE because

RE: [jira] Commented: (MYFACES-246) The WARN level log statement in VariableResolverImpl.resolveVariable should be DEBUG level

2005-05-26 Thread Broekelmann, Mathias
I´ve come across to this message some time ago. I would like to make an improvement to alias bean component to allow nested alias bean component to overwrite an existing bean in their scope and putting back the hidden value if the scope of the alias is away. To make this possible the alias

RE: Proposed improvement to x:dataTable

2005-04-12 Thread Broekelmann, Mathias
Hi Neal, -Original Message- From: Neal Haggard [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 12, 2005 3:20 PM To: MyFaces Development Subject: RE: Proposed improvement to x:dataTable Mathias, While your x:columns is very nice, it does not answer Sean's request to have

Better object.toString() instead of cast (String)object

2005-04-04 Thread Broekelmann, Mathias
Hi, To get a string value from a valuebinding the getter methods of the components always cast the object value to string (ex: HtmlOutputLink.getTitle()). A better way would be to test if the object is null and if it is not null call object.toString() and return that value. That would make it

RE: [Vote] release candidate2 for Apache MyFaces

2005-03-29 Thread Broekelmann, Mathias
Hi, I´ve already created an issue (including a patch) with the id of tree see: http://issues.apache.org/jira/browse/MYFACES-139 Mathias #2) setId() of UIComponent has some restrictions: * Must not be a zero-length String. * First character must be a letter or an underscore ('_'). *