Uploaded image for project: 'Tapestry 5'
  1. Tapestry 5
  2. TAP5-2256

Sorting is broken for Grid inline="true" in a loop

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 5.3.7, 5.4
    • 5.4
    • tapestry-core
    • None

    Description

      Placing Grid with inline="true" to a loop leads to only first grid will generate zone div.
      All subsequent grids won't generate any new zone divs, instead the will target first div. So, for example, if you click sort by column on the second grid result will appear in the first one.
      Looking at the code this the cause is that Grid instance caches value of zone property here:
      https://github.com/apache/tapestry-5/blob/5.3.7/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Grid.java#L494

      This isn't applied to 5.4, because this part was rewritten there.

      Assuming that no new 5.3.x releases will appear here is a "hacky" workaround in the form of mixin that may be applied to a grid to fix this:

      import java.lang.reflect.Field;
      
      import org.apache.tapestry5.MarkupWriter;
      import org.apache.tapestry5.annotations.InjectContainer;
      import org.apache.tapestry5.annotations.MixinAfter;
      import org.apache.tapestry5.corelib.components.Grid;
      import org.apache.tapestry5.plastic.FieldConduit;
      import org.slf4j.Logger;
      import org.slf4j.LoggerFactory;
      
      @MixinAfter
      public class GridZoneCorrectorMixin
      {
          private static final Logger logger = LoggerFactory.getLogger(GridZoneCorrectorMixin.class);
          
          @InjectContainer
          private Grid container;
          
          void afterRender(MarkupWriter writer)
          {
              try
              {
                  Field zoneConduitField = container.getClass().getDeclaredField("zone_FieldConduit");
                  zoneConduitField.setAccessible(true);
                  FieldConduit<?> conduit = (FieldConduit<?>) zoneConduitField.get(container);
                  conduit.set(container, null, null);
              }
              catch (Exception e)
              {
                  logger.error("Error correcting grid zone", e);
              }
          }
      }
      

      Attachments

        Issue Links

          Activity

            People

              jkemnade Jochen Kemnade
              dmitrygusev Dmitry Gusev
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: