Hi, after this porting I get a warning concerning a missing (or wrong)
trigger. This warning did not appear in 1.05:
26-mar-2008 11.54.07
org.apache.myfaces.trinidadinternal.context.RequestContextImpl
addPartialTriggerListeners
WARNING: Could not find partial trigger add from
CoreTable[UIXFacesBeanImpl, id=props] with the supported partialTriggers
syntax. The partial trigger was found with the deprecated syntax. Please
use the supported syntax.
I cannot figure out what is "syntax" while specifying a partial trigger.
Page components are:
<tr:table id="props" partialTriggers="add props:remove">
<tr:column>
<tr:panelHorizontalLayout valign="top">
<tr:commandLink id="remove" partialSubmit="true">
...
<tr:panelGroupLayout id="prop"...
<h:panelGrid id="current" ...
<tr:panelGroupLayout>
<tr:commandButton id="add" text="#{msg['doc.add']}"
action="#{bean.add}" partialSubmit="true"/>
Thus trigger "add" is there at the same naming level as table "props".
Indeed PPR seems working fine as before when triggered from that button,
but clicking any button raises that warning.
How should I specify such a trigger in 1.07 ?
-- Renzo