You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Andrew Fowler (JIRA)" <ji...@apache.org> on 2019/03/06 06:03:01 UTC

[jira] [Created] (TAP5-2609) Grid component configuration code is incorrect

Andrew Fowler created TAP5-2609:
-----------------------------------

             Summary: Grid component configuration code is incorrect
                 Key: TAP5-2609
                 URL: https://issues.apache.org/jira/browse/TAP5-2609
             Project: Tapestry 5
          Issue Type: Bug
          Components: documentation
    Affects Versions: 5.4.4
            Reporter: Andrew Fowler


In the "Configuring the Grid Component in the AppModule class" section of the [Grid component documentation|https://tapestry.apache.org/current/apidocs/org/apache/tapestry5/corelib/components/Grid.html] this code is given:

{code}
public static void contributeApplicationDefaults(MappedConfiguration<String, String> configuration)
{
  configuration.add(GridConstants.ROWS_PER_PAGE, "show");

  configuration.add(GridConstants.PAGER_POSITION, "bottom");

  configuration.add(GridConstants.TABLE_CLASS, "t-data-grid");
}
{code}

The configuration lines should be:

{code}
  configuration.add(ComponentParameterConstants.GRID_ROWS_PER_PAGE, "25");
  configuration.add(ComponentParameterConstants.GRID_PAGER_POSITION, "top");
  configuration.add(ComponentParameterConstants.GRID_TABLE_CSS_CLASS, "table table-hover table-bordered table-striped");
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)