Hi List,

since an upgrade of trinidad (I think from 1.0.3 to 1.0.7, might be an earlier 
update and I didn't saw the log) I get the following log warning:

 

10:04:29,671 WARN  [RequestContextImpl] DEPRECATED_TRIGGER_SYNTAX

 

My xhtml code ist he following:

 

Outer xhtml:

 

<ui:composition xmlns:ui="http://java.sun.com/jsf/facelets";      
xmlns:h="http://java.sun.com/jsf/html";   xmlns:f="http://java.sun.com/jsf/core"; 
     xmlns:tr="http://myfaces.apache.org/trinidad";      
xmlns:trh="http://myfaces.apache.org/trinidad/html";      
xmlns:c="http://java.sun.com/jstl/core";>

      <tr:poll id="poll" interval="1000" pollListener="#{table.scroll}" />

      <ui:include src="/table.xhtml" />

</ui:composition>

 

table.xhtml

 

<ui:composition xmlns:ui="http://java.sun.com/jsf/facelets";      
xmlns:h="http://java.sun.com/jsf/html";   xmlns:f="http://java.sun.com/jsf/core"; 
     xmlns:tr="http://myfaces.apache.org/trinidad";      
xmlns:trh="http://myfaces.apache.org/trinidad/html";      
xmlns:c="http://java.sun.com/jstl/core";>

      <tr:table rows="20"

            value="#{table.model}"

            binding="#{table.component}"

            var="rowValue"

            partialTriggers="poll">

 

            //lots of columns stuff...

 

                </tr:table>

</ui:composition>

 

 

There is a lot more stuff involved in this, that's why I have to include the 
page with the table. But I think this should be everything related to the Log 
Warning. I've already searched for changes in the change log but didn't found 
anything. What has changed here and what have I do to use the "new" not 
deprecated trigger syntax?

 

Thanks for help.

 

Regards

Markus Döring

Reply via email to