You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2010/08/13 22:40:54 UTC

svn commit: r985355 - /myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java

Author: bommel
Date: Fri Aug 13 20:40:54 2010
New Revision: 985355

URL: http://svn.apache.org/viewvc?rev=985355&view=rev
Log:
(TOBAGO-828) click and dblclick action on sheet

Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java?rev=985355&r1=985354&r2=985355&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISheet.java Fri Aug 13 20:40:54 2010
@@ -515,6 +515,8 @@ public abstract class AbstractUISheet ex
     for (UIComponent column : getChildren()) {
       if (column instanceof AbstractUIColumnSelector) {
         result.add(null); // XXX UIColumnSelector is currently not an instance of LayoutComponent
+      } else if (column instanceof ColumnEvent) {
+        // ignore
       } else if (column instanceof UIColumn) {
         for (UIComponent component : column.getChildren()) {
           if (component instanceof LayoutComponent) {