Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
rmorgan #1
flash form and isdefined
I have a tabnavigator form. The last tab is bascially a review and finish so
the user can look over everything they changed before submitting. I want to
only display the fields for the user if they filled them out on the previous
tabs, otherwise it does not show up.
I have tried this, but does not work. I snipped all the code, even the
cfformgroup tags to make it cleaner to look at, it all works if I take out the
is cfif/isdefined function, but shows regardless if filled in or not. If there
is another way fine, I just need to only show the fields that had been filled
out. If this is not possible, is there any other way? TIA
<cfif isdefined("form1.FirstName")>
<cfinput bind="{FirstName.text}" name="rFirstName" type="text" label="First
Name" width="150" />
</cfif>
rmorgan Guest
-
Isdefined() not working in MX6
Anyone have any clue why Isdefined() function working in MX7 and 5 but not in MX6? Code created in MX2004 trial version. Thanks, LM -
IsDefined In Coldfusion
I am trying to calculate profit loss that were input by a form., but I get the following error message... Element PROFIT is undefined in FORM ... -
Problem with IsDefined()
Hi there, I'm testing for the existence of attributes of xml nodes by using IsDefined(). I have the following code: <cfif... -
<cflock> with isdefined...help.
Is a cflock required around a isdefined("session") tag? For exampe: <cfif isdefined("session.name")> Hello </cfif> Is locking required here?... -
Using IIf() with IsDefined()
What have I missed about IIf()? Consider this example form input: <input type='text' name='foo' id='foo'...



Reply With Quote

