ICEfaces
  1. ICEfaces
  2. ICE-7185

ice:dataTable getters called for unrendered panelTabs

    Details

    • Type: Improvement Improvement
    • Status: Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: EE-2.0.0.GA
    • Fix Version/s: 2.1-Beta, EE-2.0.0.GA_P01
    • Component/s: ICE-Components
    • Labels:
      None
    • Environment:
      -
    • Assignee Priority:
      P1

      Description

      Consider the following source code (BeanA and BeanB source is the same):

      @SessionScoped
      public class BeanA implements Serializable
      {
      @PostConstruct
      public void init(){
      System.out.println("A Created ");
      }

      public List<String> getA(){
      return Arrays.asList("A", "A");
      }
      }

      and the view:

      <ice:panelTabSet>
      <ice:panelTab label="1">
      </ice:panelTab>
      <ice:panelTab label="2">
      <ice:dataTable value="#{beanB.b}" var="_b">
      <ice:column>
      <ice:outputText value="#{_b}" />
      </ice:column>
      </ice:dataTable>
      </ice:panelTab>
      <ice:panelTab label="3">
      <ice:dataTable value="#{beanA.a}" var="_a">
      <ice:column>
      <ice:outputText value="#{_a}" />
      </ice:column>
      </ice:dataTable>
      </ice:panelTab>
      </ice:panelTabSet>

      If you navigate to tab 2, the first bean´s init method will be called ("B Created"). Then navigate to tab 3 and you will see the same for A ("A created"). If you swap out the h:dataTable/h:column and replace it with it´s ice equivalents and retry the above test, both B and A are created at the same time when you click on tab 2 (("B Created" & "A Created"). Having all getters called can hurt performance since they may contain expensive logic such as DB accesses, etc..

        Issue Links

          Activity

          Repository Revision Date User Message
          ICEsoft Public SVN Repository #25441 Fri Sep 09 10:20:05 MDT 2011 yip.ng ICE-7185: ice:dataTable getters called for unrendered panelTabs.
          Files Changed
          Commit graph MODIFY /icefaces2/branches/icefaces-2.0.x-maintenance/icefaces/compat/components/src/main/java/com/icesoft/faces/component/panelseries/UISeries.java
          Repository Revision Date User Message
          ICEsoft Public SVN Repository #25440 Fri Sep 09 09:47:03 MDT 2011 yip.ng ICE-7185: ice:dataTable getters called for unrendered panelTabs.
          Files Changed
          Commit graph MODIFY /icefaces2/trunk/icefaces/compat/components/src/main/java/com/icesoft/faces/component/panelseries/UISeries.java

            People

            • Assignee:
              Mark Collette
              Reporter:
              Tyler Johnson
            • Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

              • Created:
                Updated:
                Resolved: