You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2022/11/08 11:11:58 UTC

[myfaces-tobago] branch t5_selectMany updated (b19429820f -> 63d34ab256)

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

hnoeth pushed a change to branch t5_selectMany
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


    from b19429820f feat(selectMany): fix help attribute
     new 0adeca2088 feat(selectMany): cleanup readonly
     new 63d34ab256 feat(selectMany): set labelLayout default value

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../apache/myfaces/tobago/internal/component/AbstractUISelectMany.java | 2 --
 .../src/main/resources/META-INF/tobago-config.xml                      | 3 +++
 2 files changed, 3 insertions(+), 2 deletions(-)


[myfaces-tobago] 01/02: feat(selectMany): cleanup readonly

Posted by hn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hnoeth pushed a commit to branch t5_selectMany
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 0adeca2088988b445a63e552a34aa8cade89d4e7
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Tue Nov 8 10:42:59 2022 +0100

    feat(selectMany): cleanup readonly
    
    isReadonly method can be removed. It exists in AbstractUISelectMany
    
    Issue: TOBAGO-2159
---
 .../apache/myfaces/tobago/internal/component/AbstractUISelectMany.java  | 2 --
 1 file changed, 2 deletions(-)

diff --git a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISelectMany.java b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISelectMany.java
index 061f571e38..712c995c4f 100644
--- a/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISelectMany.java
+++ b/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/component/AbstractUISelectMany.java
@@ -59,8 +59,6 @@ public abstract class AbstractUISelectMany extends AbstractUISelectManyBase
 
   public abstract boolean isDisabled();
 
-  public abstract boolean isReadonly();
-
   public abstract boolean isInline();
 
   public boolean isError() {


[myfaces-tobago] 02/02: feat(selectMany): set labelLayout default value

Posted by hn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hnoeth pushed a commit to branch t5_selectMany
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 63d34ab256c43677ccca4d64672818e2a815fe50
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Tue Nov 8 11:53:27 2022 +0100

    feat(selectMany): set labelLayout default value
    
    Issue: TOBAGO-2159
---
 .../src/main/resources/META-INF/tobago-config.xml                      | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/tobago-config.xml b/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/tobago-config.xml
index e07725496b..e4fd935a3a 100644
--- a/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/tobago-config.xml
+++ b/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/tobago-config.xml
@@ -74,6 +74,9 @@
         <tag name="selectBooleanToggle">
           <attribute name="labelLayout" default="flexLeft"/>
         </tag>
+        <tag name="selectMany">
+          <attribute name="labelLayout" default="flexLeft"/>
+        </tag>
         <tag name="selectManyCheckbox">
           <attribute name="labelLayout" default="flexLeft"/>
         </tag>