cfform

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 the other dates end up in front of the calendar. This is only an IE issue as Firefox and Safari work just fine. Is there a simple CSS hack or s...

Flash/Flex Forms/Gateways problems running CF8 with Siteminder

Is anybody out there successfully running SiteMinder along with CF8 on an IIS server? Here's the problem. It took some effort, but about a month ago I installed Siteminder on my company's CF7 server. Siteminder and CF7 worked together in harmony, everything worked properly (flash forms, flashremoting, flex gateway). A few days ago we ...

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" validate="regex" pattern="[A-Za-z]" message="Only characters are allowed." /> <input type="submit" name="btnSubmit" value="check" /> </cfform> Theoretically,...

CFDIV, and CFFORM not working right inside a CFWINDOW.

Hey guys I am having an issue when I'm trying to display a cfdiv inside a cfwindow. It just doesn't show up. No errors, nothing to tell me I'm doing something wrong. The div works just fine if I display it in the page outside of the cfwindow. The cfdiv binds to a page that displays notes. If I try to do a cfinclude with the page the cfdi...

Markup validation error when using CFForm

Does anyone know of a solution to the following markup validation error? I'm not sure if this is an issue in ColdFusion or my own code, but the output of the following snippet does not validate correctly on W3C markup validation service: Code <cfform class="SearchForm" id="SearchForm" action=""> <fieldset> ...

Jrun Server crashes when a page has cfform,cfgrid,cflayout etc..

Hi, I am having a weird problem. I have a application that works perfect in my development machine and UAT machine which is of windows 2003 server/cf8. When i uploaded the same application on Solaris box with CF8, and access the site it works perfect until i hit the page that has CFFORM, CFLAYOUT, CFGRID.. etc.. The Jrun Server just cr...

enable disable cfselect

how can I disable cfselect while using html form format, or make cfselect view only? Thanks!! ...

Coldfusion Ajax - Form Submission

I Need help with ColdFusion, I want to use the CF9 ajax library, I've got <cfajaximport tags="cfform"> in my header, and included a form using <cfdiv bind="url:domainchecker.cfm"> This however replaces the entire form with the "Loading" ajax wheel then shows the results. What I need, is for the form to submit, but the a separate result...