Can't nest html within <output>
Brought to you by:
vittal
Have managed to nest simple html within the "alt" in
<output> eg
<output name = "FieldName" sub="" alt="<li>Write
this</li>">
However the output html glitches when trying to nest
more complex html eg
<output name="FieldName" sub="" alt="<output
type="text" name="NewField">">
Why doesn't the nested html work? Is it not possible
to use it like this?
If not, how else can you do the opposite of an <ONLY
if=""> output in an output template - ie can you do an
<ONLY ifNOT>????
Logged In: NO
use <only if="!condition">
...like...
<only if="1">
...returns true but
<only if="!1">
...returns false. Same with form fields...
<only if="FormField">You entered the form field</only>
...returns true if FormField has something in it & false if it don't...returning true means it display's what's in the
<only>...returning false means it don't...
<only if="!FormField">You didn't enter the form field</only>
...does the opposite...returns true if FormField has nothing in it & false if it does. Yes, I'm (pretty) sure this works
with html...
<only if="!FormField"><blink>You didn't enter the form field</blink></only>