Tagged Questions
The cfinput tag has no wiki summary.
2
votes
3answers
2k views
How to validate characters ONLY in ColdFusion CFForm?
I've got a very simple cfform with a single form field:
<cfform action="asdf.cfm" method="post">
<cfinput name="fieldName" type="text" size="20" maxlength="20" required="yes" ...
2
votes
4answers
2k views
CSS bleed-through with cfinput type=“datefield”
I have a form using multiple <cfinput type="datefield" ...>. They are positioned in such a way that the pop-up CSS calendar should appear over the field for others. However, the text fields for ...
1
vote
1answer
121 views
Can I load the max value of the range attribute in CFINPUT using and AJAX call?
I have a CFINPUT tag in a CFFORM. I want to set the range dynamically without posting the page. I have several AJAX calls throughout the page to dynamically load form fields on the fly:
<cfselect ...
1
vote
1answer
856 views
On file upload, Coldfusion returns: C:\ColdFusion8\runtime\servers\coldfusion\SERVER-INF\temp\wwwroot-tmp\neotmp12429.tmp did not contain a file
Upon file upload, Coldfusion 8 returns: C:\ColdFusion8\runtime\servers\coldfusion\SERVER-INF\temp\wwwroot-tmp\neotmp12429.tmp did not contain a file. Does anyone know what may cause this? Bad syntax? ...
0
votes
1answer
58 views
cfinput autosuggest not returned properly from .get() call
I'm having a problem with a cfinput tag when returned from a jQuery .get() call. If I put the tag on the main page like so:
<cfform>
<cfinput type="text" name="txtinputfilter" ...
0
votes
0answers
72 views
Re-position cfcalendar control for cfinput (type:datefield)
I would like to re-position the cfcalendar control within the cfinput form field instead of to the right or below.
The reason I say below is the framework environment I am using pushes the calendar ...
0
votes
1answer
102 views
ColdFusion bug - cfinput mask doesn't work with cfmail
Using a mask on a cfinput field causes the email to not go through. I remove the mask and the email is sent fine.
<HTML>
<HEAD>
</HEAD>
<BODY>
<cfform method="post" ...
0
votes
2answers
155 views
CFINPUT to update data in grid
I have CFINPUT text boxes (type= datefield) that are bound to a cfgrid.
When a row is selected the input display from the grid's datastore.
What I would like to do is not use the edit functionality ...
0
votes
3answers
298 views
Cfinput Checkbox Checked
Talk about basic... I must need more caffeine this morning or something b/c I can't quite get this to work.
My form has a number of inputs including one checkbox. In my Cfquery, I just want to write ...
0
votes
2answers
151 views
<cfform> inside cfscript component
I'm making components for a site and I'm wondering if I can return a cfform inside a return variable from a component and force coldfusion to output it parsed.
Obviously using "writeOutput(")" ...
0
votes
7answers
3k views
use a startdate on a <cfinput type= “datefield”> in ColdFusion
I am using the <cfinput type="datefield"> and I need to limit the dates that can be chosen. I cannot allow a date that can be selected in the past. Any help here?
Thanks!