Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
rizor #1
Enable Disable fields onclick
I have a cfinput field that is disabled when the form first loads (disabled="true")
I want to click a button to enable the field. (disabled="false")
How can this be done in a CF flash form?
rizor Guest
-
disable/enable
I have a form to included these file 1. Radio buttons. button1, button2 2. Some text boxes: fname, lname, address, phone, etc. 3. Some submit... -
enable/disable submit button
:confused; can anyone help? i want to setup a form that allows users to upload files. i'm using ASPupload and this works great! however if a... -
enable/disable
How can do disable and enable for radio box? it worked for all my text box but not for radio box ======= <script language="JavaScript"> function... -
NEED HELP W/ ENABLE/DISABLE CHECKBOXES AND TEXTBOXES
Hi all, Can you please tell me what's wrong with my code??? i do have this database in wich i have to field.One is a "yes/no" field and another... -
disable or prevent a button with onclick and javascript
I scoured this group and others looking for the best way to disable a button after the first click to prevent multiple submissions, but never did... -
The ScareCrow #2
Re: Enable Disable fields onclick
See attached code for example.
Ken
<cfform name="myform" format="Flash">
<cfformitem type="script">
function doEnable(){
_root.t1.enabled = true;
}
</cfformitem>
<cfinput type="Text" name="t1" value="this field" required="No"
enabled="false">
<cfinput type="button" name="submit" value="Submit" onclick="doEnable();">
</cfform>
The ScareCrow Guest



Reply With Quote

