This is an automated email from the ASF dual-hosted git repository.

derjan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/empire-db.git


The following commit(s) were added to refs/heads/master by this push:
     new e0007dfb EMPIREDB-392
e0007dfb is described below

commit e0007dfbc94e4d29336d712b50290ccfba0a67cf
Author: Jan Glaubitz <[email protected]>
AuthorDate: Tue Aug 2 10:01:04 2022 +0200

    EMPIREDB-392
    
    - e:input inside ui:repeat does not work
---
 .../src/main/java/org/apache/empire/jsf2/utils/TagEncodingHelper.java  | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/utils/TagEncodingHelper.java
 
b/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/utils/TagEncodingHelper.java
index e360fb61..afbcf9cf 100644
--- 
a/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/utils/TagEncodingHelper.java
+++ 
b/empire-db-jsf2/src/main/java/org/apache/empire/jsf2/utils/TagEncodingHelper.java
@@ -1740,6 +1740,9 @@ public class TagEncodingHelper implements NamingContainer
             if (p instanceof UIData) {
                 this.insideUIData = true;
                 break;
+            } else if ("facelets.ui.Repeat".equals(p.getRendererType())) {
+                this.insideUIData = true;
+                break;
             }
         }
         return this.insideUIData;

Reply via email to