On 8/15/07, Simon Lessard <[EMAIL PROTECTED]> wrote: > Please also note that I'm stupid and forgot the always rendered panelGroup > around the outputText to set the partialTriggers...
That shouldn't be necessary at all! I'll have a look at this, and the nested table bug listed below. -- Adam > However, I do have a PPR > issue in a big application using the new XmlHttpRequest that I'll have to > investigate further, but for now I'll go open my belly with a daisho and > hope to die fast to not be any more ashamed... > > > > Regards, > > ~ Simon > > On 8/15/07, Simon Lessard <[EMAIL PROTECTED]> wrote: > > Please note that there's no white space in the partialTriggers property, I > don't know why one showed up in the post. > > > > > > Regards, > > > > ~ Simon > > > > > > > > On 8/15/07, Simon Lessard <[EMAIL PROTECTED]> wrote: > > > Hello all, > > > > > > The following page fail to update after the PPR event with current 1.2.2 > branch using RI on OC4J 11g beta (container should not be the issue here > though, nor should RI). test managed bean is a session scoped bean with a > single r/w value property. Anyone else can reproduce the issue? > > > > > > <?xml version='1.0' encoding='windows-1252'?> > > > <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" > > > xmlns:f="http://java.sun.com/jsf/core" > > > xmlns:tr=" > http://myfaces.apache.org/trinidad"> > > > <jsp:directive.page > contentType="text/html;charset=windows-1252"/> > > > <f:view> > > > <tr:document title="Test"> > > > <tr:form> > > > <tr:inputText id="testField" label="test" value="#{test.value}" > autoSubmit="true"/> > > > <tr:outputText value="Ok!" partialTriggers=" testField" > rendered="#{test.value == 'foo'}"/> > > > </tr:form> > > > </tr:document> > > > </f:view> > > > </jsp:root> > > > > > > public class TestBean > > > { > > > private String value; > > > > > > public TestBean() > > > { > > > } > > > > > > public void setValue(String param) > > > { > > > this.value = param; > > > } > > > > > > public String getValue() > > > { > > > return value; > > > } > > > } > > > > > > Regards, > > > > > > ~ Simon > > > > > > > > >
