Re: Dynamic Data URL Title Property
Naphta <[email protected]>
| Newsgroups | gmane.comp.cms.xaraya.user |
|---|---|
| Message-ID | <[email protected]> |
Naphta schrieb:
> In my templates I need to check if the Dynamic Data URL Title Property
> is emtpy.
> Problem: the ULR field contains 'http://' so this property is never empty.
>
> How can I set a conditional statement to prove if the title field of the
> URL Title Property is empty?
>
> Karsten
This works fine:
<xar:if condition="$myurtitle ne 'http://'">
do nothing
<xar:else />
do something
</xar:if>
Karsten