Skip to content

Instantly share code, notes, and snippets.

@inacionery
Created October 28, 2015 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inacionery/81393ac274c863881434 to your computer and use it in GitHub Desktop.
Save inacionery/81393ac274c863881434 to your computer and use it in GitHub Desktop.
TextRepeatable
TextBox
Integer
TextInner
TextBoxRepeatable
<#if TextRepeatable.getSiblings()?has_content>
<#list TextRepeatable.getSiblings() as cur_TextRepeatable>
${cur_TextRepeatable.getData()}
${cur_TextRepeatable.TextBox.getData()}
${cur_TextRepeatable.Integer.getData()}
<#if cur_TextRepeatable.Integer.getSiblings()?has_content>
<#list cur_TextRepeatable.Integer.getSiblings() as cur_Integer>
${cur_Integer.TextInner.getData()}
</#list>
</#if>
<#if cur_TextRepeatable.TextBoxRepeatable.getSiblings()?has_content>
<#list cur_TextRepeatable.TextBoxRepeatable.getSiblings() as cur_TextBoxRepeatable>
${cur_TextBoxRepeatable.getData()}
</#list>
</#if>
</#list>
</#if>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment