Skip to content

Commit

Permalink
For #4117 and #4064: don't enable paging at design-time
Browse files Browse the repository at this point in the history
  • Loading branch information
ebruchez committed Aug 21, 2019
1 parent 35139ad commit 589e245
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -172,7 +172,12 @@
<fr:repeater
id="{$repeater-id}"
ref="*"
xbl:attr="template origin min max remove-constraint apply-defaults appearance insert freeze readonly page-size">
xbl:attr="template origin min max remove-constraint apply-defaults appearance insert freeze readonly">

<!-- Paging is only available at runtime, not design-time -->
<xsl:if test="not($editable)">
<xsl:copy-of select="$root/@page-size"/>
</xsl:if>

<!-- Forward iteration events to the outside -->
<xf:action
Expand Down

0 comments on commit 589e245

Please sign in to comment.