Skip to content

Instantly share code, notes, and snippets.

@denyskoch
Created February 19, 2014 13:27
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 denyskoch/9091961 to your computer and use it in GitHub Desktop.
Save denyskoch/9091961 to your computer and use it in GitHub Desktop.
Strange behavior of "{var}" != {var}
{namespace v=Tx_Vhs_ViewHelpers}
{namespace flux=Tx_Flux_ViewHelpers}
<f:layout name="Page" />
<f:section name="Configuration">
<flux:flexform id="defaultpage" icon="ext_icon.gif">
<flux:flexform.sheet name="logos">
<flux:flexform.section name="logos">
<flux:flexform.object name="logo">
<flux:flexform.field.input name="alt" required="true" />
<flux:flexform.field.file name="src" allowed="png,svg" required="true" />
</flux:flexform.object>
</flux:flexform.section>
</flux:flexform.sheet>
<flux:flexform.grid>
<flux:flexform.grid.row>
<flux:flexform.grid.column colPos="0" name="content" />
</flux:flexform.grid.row>
</flux:flexform.grid>
</flux:flexform>
</f:section>
<f:section name="Content">
<f:for each="{logos}" as="logoObj">
"{logoObj.logo.src}" != {logoObj.logo.src}
</f:for>
</f:section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment