RE: cfinput autosuggest list not correct

2013-04-09 Thread Stephens, Larry V
is a big help. -Original Message- From: Matt Quackenbush [mailto:quackfu...@gmail.com] Sent: Monday, April 08, 2013 6:07 PM To: cf-talk Subject: Re: cfinput autosuggest list not correct On Mon, Apr 8, 2013 at 6:00 PM, Raymond Camden raymondcam...@gmail.comwrote: Oh, and stop using

Re: cfinput autosuggest list not correct

2013-04-09 Thread Raymond Camden
a little more work - like populating select inputs - but I'm now glad I made the change. jQuery is a big help. -Original Message- From: Matt Quackenbush [mailto:quackfu...@gmail.com] Sent: Monday, April 08, 2013 6:07 PM To: cf-talk Subject: Re: cfinput autosuggest list not correct

Re: cfinput autosuggest list not correct

2013-04-09 Thread Russ Michaels
the change. jQuery is a big help. -Original Message- From: Matt Quackenbush [mailto:quackfu...@gmail.com] Sent: Monday, April 08, 2013 6:07 PM To: cf-talk Subject: Re: cfinput autosuggest list not correct On Mon, Apr 8, 2013 at 6:00 PM, Raymond Camden raymondcam

Re: cfinput autosuggest list not correct

2013-04-08 Thread Raymond Camden
That's the default. Use matchContains=true. Oh, and stop using cfinput. Avoid the CF UI tags. Take the time to learn some JS. You will thank me. On Mon, Apr 8, 2013 at 4:50 PM, Bill Franklin bill.frank...@bayer.comwrote: I have verified that the JSON being returned shows the correct

Re: cfinput autosuggest list not correct

2013-04-08 Thread Matt Quackenbush
On Mon, Apr 8, 2013 at 6:00 PM, Raymond Camden raymondcam...@gmail.comwrote: Oh, and stop using cfinput. Avoid the CF UI tags. Take the time to learn some JS. You will thank me. +infinity ~| Order the Adobe Coldfusion

Re: cfinput toggle readonly or disabled

2012-02-02 Thread .jonah
It seems you should be able to do: cfinput id=addr name=addr type=text value= disabled=#form_editable#/ On 2/2/12 12:54 AM, Seamus Campbell wrote: Hi I want to be able to toggle disabled in my form fields. I have this code cfif do IS view cfset form_editable = disabled cfelse cfset

Re: cfinput toggle readonly or disabled

2012-02-02 Thread Seamus Campbell
Thanks - but no, the form only needs to see the word disabled ie disabled = false still disables the form (same with readonly) It seems you should be able to do: cfinput id=addr name=addr type=text value= disabled=#form_editable#/ On 2/2/12 12:54 AM, Seamus Campbell wrote:

Re: cfinput toggle readonly or disabled

2012-02-02 Thread .jonah
It worked for me in Chrome, but didn't test in other browsers. Two other options are: 1) Put your cfinput in an if/else with/without that attributes. 2) Pass all the attributes in as an attributeCollection [1] cfset inputArgs = {id=addr, name=addr, type=text, value= ) / cfif NOT

Re: cfinput toggle readonly or disabled

2012-02-02 Thread Seamus Campbell
Thanks for that - I'll use your option 1 - I did think of that but it didn't seem particularly elegant, but it's simple and it works. And I can't get option 2 to work It worked for me in Chrome, but didn't test in other browsers. Two other options are: 1) Put your cfinput in an if/else

Re: cfinput type=datefield won't follow my CSS rules

2011-06-01 Thread Ken Hammond
Sorry, forgot can't do attachments, here is a link to the image: http://postimage.org/image/1hk51i4mc/ -Original Message- From: Ken Hammond khamm...@saleminc.com To: cf-talk cf-talk@houseoffusion.com Date: Wed, 01 Jun 2011 11:55:04 -0500 Subject: cfinput type=datefield won't follow my

Re: cfinput type=datefield won't follow my CSS rules

2011-06-01 Thread morgan l
The datefield type is applying floats to the elements it creates, 'removing' them from their containers. I don't have an example of a fix, but that bit of info will hopefully point you at a solution. ~| Order the Adobe

Re: cfinput type=datefield won't follow my CSS rules

2011-06-01 Thread Ken Hammond
@houseoffusion.com Date: Wed, 1 Jun 2011 13:07:28 -0500 Subject: Re: cfinput type=datefield won't follow my CSS rules The datefield type is applying floats to the elements it creates, 'removing' them from their containers. I don't have an example of a fix, but that bit of info will hopefully point you

Re: cfinput type=datefield won't follow my CSS rules

2011-06-01 Thread Ken Hammond
@houseoffusion.com Date: Wed, 01 Jun 2011 16:19:15 -0500 Subject: Re: cfinput type=datefield won't follow my CSS rules I've made it a little further by adding a div around each cfinput datefield and putting the style clear:both; New image: http://postimage.org/image/2umskf4hw/ At least now the labels

Re: CFinput type=file validation on submit

2011-01-31 Thread Justin Scott
Hi, I'm trying to create a input form that will only accept PDF's and images. accept=application/pdf,image/tiff,image/jpeg,image/x-png The accept attribute is used on CFFILE when it's performing the upload action on the target page, not within the CFINPUT tag itself. CFFILE compares the

Re: cfinput 'datefield' always aligns to left?

2010-07-22 Thread Michael Grant
Can you post the compiled source for the same snippet? On Thu, Jul 22, 2010 at 2:02 PM, Jim Eisenhauer eisenha...@gmail.comwrote: Please help. I cannot get the input field to center in a table cell using 'td align=center' or using CSS. I haven't even been able to put something in front

Re: cfinput 'datefield' always aligns to left?

2010-07-22 Thread Azadi Saryev
are you using cf8 or cf9? iirc, the css classes you need to override are version-specific... Azadi On 22/07/2010 14:02, Jim Eisenhauer wrote: Please help. I cannot get the input field to center in a table cell using 'td align=center' or using CSS. I haven't even been able to put

Re: cfinput - validate non required field

2010-03-06 Thread Dave Watts
Can you do that?  The email address field is not required, but if something is in there, I would like it to be valiadated as a properly formatted email address. CFINPUT TYPE=text  NAME=emailAddress MESSAGE=Please enter an email address. validate=email  value=#attributes.EmailAddress#

Re: cfinput - validate non required field

2010-03-06 Thread Matthew Smith
Nothing is happening though. That's why I asked. On Sat, Mar 6, 2010 at 4:24 PM, Dave Watts dwa...@figleaf.com wrote: Can you do that? The email address field is not required, but if something is in there, I would like it to be valiadated as a properly formatted email address.

Re: cfinput - validate non required field

2010-03-06 Thread Dave Watts
Nothing is happening though.  That's why I asked. If nothing is happening, it probably has to do with either (a) the fact that you're presumably using it in a custom tag, or (b) a failure to load /CFIDE/scripts/cfform.js, or both. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

Re: cfinput - validate non required field

2010-03-06 Thread Kevin Pepperman
View your source code and look to see if you are loading the scripts. You should see something like this is the source. Make sure those the external scripts are loading. script type=text/javascript src=/scripts/scripts/cfform.js/script script type=text/javascript

Re: cfinput not accepting long javascript?

2009-09-02 Thread Dave Watts
cfinput name=close_period_jump_start  id=close_period_jump_start type=checkbox label=Close Jump Start Pay Period onclick='alert(Make sure you are changing the Weekly Commission Start Date as well!); getURL(javascript:window.open('wtcompanyinfo_sendemail.cfm','news');) It's a flash cfform

Re: cfinput not accepting long javascript?

2009-09-02 Thread Phillip Vector
Sorry.. There is a single quote after that. The copy and paste didn't grab it. I've changed it into a function now.. cfformitem type=script function Send_Email() {

Re: cfinput not accepting long javascript?

2009-09-02 Thread Dave Watts
I've changed it into a function now..        cfformitem type=script                function Send_Email()                {                         getURL(javascript:NewWindow=window.open('adjustments.cfm','newWin'); NewWindow.focus(); void(0););                        onclick='alert(Make

Re: cfinput not accepting long javascript?

2009-09-02 Thread Phillip Vector
Again.. Sorry.. I noticed the error once I sent out the email. it's still not loading the flash page, but me and my boss decided to just do it a different way. Apparently, It was erroring and JRun was picking up the error... Which I can't see. On Wed, Sep 2, 2009 at 1:51 PM, Dave

Re: cfinput type=datefield

2009-08-28 Thread James Holmes
You're best off getting ExtJS and using it directly (especially since ExtJS is now up to version 3.0 while CF8 bundles version 1.1). mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/8/28 Glyn Jackson glyn.jack...@newebia.co.uk: I am using CF8 and want to

Re: cfinput type=datefield

2009-08-28 Thread Glyn Jackson
I did try that but because I am using cflayout on the same page it all goes wrong coldfusion gets confused to which ext its using or should I sat the JS does. wondering it we can just yap into the ext1 JS bot use the paths or URL's that CF uses.

Re: cfinput type=datefield

2009-08-28 Thread Azadi Saryev
personally, i have found various jquery date-related plugins a lot easier to use and a lot more customizable. and you can easily use them together with cf's built-in Extjs-based features. http://jqueryui.com/demos/datepicker/

Re: cfinput type=datefield

2009-08-28 Thread Glyn Jackson
Thanks Think I will try the jquery ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: cfinput question

2009-07-01 Thread sam Detweiler
I'm using the cfinput type=file tag to upload pdfs to the server. Is there a way in Cold Fusion to, when the file upload / browse dialog comes up, restrict it to only show pdf files? Or is that an operating system / java / something else function? Thanks in advance, Les how about cffile

Re: cfinput question

2009-07-01 Thread Les Irvin
At the risk of exposing my ignorance, isn't cffile a server-side operation? I'm needing a client side filter, basically. On Wed, Jul 1, 2009 at 2:27 PM, sam Detweilersdetw...@gmail.com wrote: how about cffile action=upload accept = application/pdf

RE: cfinput question

2009-07-01 Thread Justin Scott
At the risk of exposing my ignorance, isn't cffile a server-side operation? I'm needing a client side filter, basically. Yes. There is no way that I am aware of to put a filter on the file selector box triggered by an input tag. -Justin

Re: cfinput question

2009-07-01 Thread Charlie Griefer
Only Flash based uploaders can filter the user's choice of file types. Best you can do is check it after the upload. (AFAIK) :) On Wed, Jul 1, 2009 at 1:53 PM, Les Irvin les.cft...@gmail.com wrote: At the risk of exposing my ignorance, isn't cffile a server-side operation? I'm needing a

Re: cfinput question

2009-07-01 Thread Ian Skinner
Les Irvin wrote: I'm using the cfinput type=file tag to upload pdfs to the server. Is there a way in Cold Fusion to, when the file upload / browse dialog comes up, restrict it to only show pdf files? Or is that an operating system / java / something else function? Thanks in advance, Les

Re: cfinput question

2009-07-01 Thread sam Detweiler
At the risk of exposing my ignorance, isn't cffile a server-side operation? I'm needing a client side filter, basically. how about cffile action=upload accept = application/pdf using this the browser will ask for *.pdf files INITIALLY.. there is NO way to enforce ONLY a certain file

RE: cfinput question

2009-07-01 Thread Paul Alkema
To: cf-talk Subject: Re: cfinput question Les Irvin wrote: I'm using the cfinput type=file tag to upload pdfs to the server. Is there a way in Cold Fusion to, when the file upload / browse dialog comes up, restrict it to only show pdf files? Or is that an operating system / java / something else

Re: CFINPUT won't accept submit as a type

2009-04-26 Thread Charlie Griefer
On Sun, Apr 26, 2009 at 10:09 PM, Maureen mamamaur...@gmail.com wrote: Have any of you seen this? It makes no sense at all since cfinput type=submit  is valid syntax Here's the code: cfform method=get name=loginForm onsubmit=return false;   cfinput type=text name=username label=username /

Re: CFINPUT won't accept submit as a type

2009-04-26 Thread Michael Dinowitz
The server has to be on CF MX (6) or lower. CF7 and over has submit as a proper type for cfinput. On Mon, Apr 27, 2009 at 1:09 AM, Maureen mamamaur...@gmail.com wrote: Have any of you seen this? It makes no sense at all since cfinput type=submit is valid syntax Here's the code: cfform

Re: CFINPUT won't accept submit as a type

2009-04-26 Thread Maureen
Yeah.. I figured it out with Michael's help. The server is running CF6. I thought it was on CF7. Apparently submit wasn't a valid type for CFINPUT until CF7. It's been a long time since I used CF6. This wasn't even my code - just something I was trying for an ajax validated login.

Re: cfinput enable disable not working

2009-03-19 Thread James Holmes
Is this on a flash form or HTML? The the enabled attribute is only for flash forms. mxAjax / CFAjax docs and other useful articles: http://www.bifrost.com.au/blog/ 2009/3/19 Nupur Gupta nupurgupta0...@gmail.com: According to Coldfusion 7 documentation, there are now tags on cfinput for

Re: cfinput autosuggest not working?

2009-01-11 Thread Les Mizzell
That solved it. I moved all missing scripts from my local install out to the CFIDE folder on the server, and everything is working correctly now. Still don't understand why these files weren't installed when the original CF8 install was done by the host IT guys though. Problem solved! Thanks

Re: cfinput autosuggest not working?

2009-01-10 Thread Les Mizzell
I'm asking you to either create a virtual directory in your Webserver or else simply copy the files to your webroot. Checking the files, there was already a copy at: C:\Inetpub\wwwroot2\ I placed another copy in C:\Inetpub\wwwroot2\mysite\ Still not working ... I'm starting to feel like some

Re: cfinput autosuggest not working?

2009-01-10 Thread Ian Rutherford
Go into IIS and find your website. Right-click on the site and select add virtual directory Name it cfide and map it to the cfide directory. I would recommend setting security for all of the folders in that directory except cfscript to only be accessible locally.

Re: cfinput autosuggest not working?

2009-01-10 Thread Les Mizzell
Ian Rutherford wrote: Go into IIS and find your website. Right-click on the site and select add virtual directory Name it cfide and map it to the cfide directory. Above done. Still not working. Test page here: http://www.nmrs.com/test.cfm If you do a view source on the test page below, the

Re: cfinput autosuggest not working?

2009-01-10 Thread Dave Watts
Go into IIS and find your website. Right-click on the site and select add virtual directory Name it cfide and map it to the cfide directory. Above done. Still not working. Test page here: http://www.nmrs.com/test.cfm When I go to: http://www.nmrs.com/CFIDE/scripts/ I get a 403 access is

RE: cfinput autosuggest not working?

2009-01-10 Thread Sagar Gupta
? Best regards, Sagar Gupta -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: Sunday, January 11, 2009 3:27 AM To: cf-talk Subject: Re: cfinput autosuggest not working? Ian Rutherford wrote: Go into IIS and find your website. Right-click on the site and select

Re: cfinput autosuggest not working?

2009-01-10 Thread Les Mizzell
Hmm - NONE of those files are present in the CFIDE folder! OK, that explains the problem. I didn't do the install of CF 8 - shouldn't those have been installed with the rest of the files? Well, when I get up tomorrow I know what to do to fix it at this point... Thanks

RE: cfinput autosuggest not working?

2009-01-10 Thread Sagar Gupta
[mailto:lesm...@bellsouth.net] Sent: Sunday, January 11, 2009 12:32 PM To: cf-talk Subject: Re: cfinput autosuggest not working? Hmm - NONE of those files are present in the CFIDE folder! OK, that explains the problem. I didn't do the install of CF 8 - shouldn't those have been installed with the rest

Re: cfinput autosuggest not working?

2009-01-09 Thread Les Mizzell
Ben Forta's example doesn't work either! #ValueList(data.artname)# displays fine outside the cfinput. !--- Get data --- cfquery datasource=cfartgallery name=data SELECT artname FROM art ORDER BY artname /cfquery !--- The form --- cfform Art: !--- Populate auto-suggest control --- cfinput

Re: cfinput autosuggest not working?

2009-01-09 Thread Dave Watts
OK, this seems a server config issue maybe? Help? Probably. Do you have a /CFIDE directory (or virtual directory) on your web server? Can you get to http://www.yourserver.com/CFIDE? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber

Re: cfinput autosuggest not working?

2009-01-09 Thread Sagar Gupta
Les, Check if you have /CFIDE mapped as virtual directory under your webroot. If it's already there or mapped, check for permissions. ColdFusion will try to include following javascript and CSS files: script type=text/javascript

Re: cfinput autosuggest not working?

2009-01-09 Thread Les Mizzell
Probably. Do you have a /CFIDE directory (or virtual directory) on your web server? Can you get to http://www.yourserver.com/CFIDE? Nope OK, I've access to the CF Admin, and I know just enough to get myself into trouble! What needs adjusting?

Re: cfinput autosuggest not working?

2009-01-09 Thread Les Mizzell
Sagar Gupta wrote: Les, Check if you have /CFIDE mapped as virtual directory under your webroot. If it's already there or mapped, check for permissions. OK, here's what I see in the mapping panel right now: Logical: /CFIDE Directory: C:\inetpub\wwwroot\CFIDE For a specific site folder,

RE: cfinput autosuggest not working?

2009-01-09 Thread Sagar Gupta
, eWorks www.eworks.in -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: Saturday, January 10, 2009 6:40 AM To: cf-talk Subject: Re: cfinput autosuggest not working? Sagar Gupta wrote: Les, Check if you have /CFIDE mapped as virtual directory under your webroot

Re: cfinput autosuggest not working?

2009-01-09 Thread Ian Rutherford
Do you have access to the actual web server admin? (not the cf admin) If so, what web server are you running? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: cfinput autosuggest not working?

2009-01-09 Thread Les Mizzell
Ian Rutherford wrote: Do you have access to the actual web server admin? (not the cf admin) If so, what web server are you running? IIS 7 I believe. Yup, I've got complete access to anything on the server. ~| Adobe®

Re: cfinput=datefield display problems in IE7

2008-09-08 Thread Jeff Martin
Worked perfectly! Thanks! I was getting the same thing, so I played around a little bit with wrapping the cfinput in another div, and this seems to work in IE7 and FF2: div style=clear:both;position:relative;z-index:3;cfinput type.. /div div

RE: cfinput required=yes not generating pop-up

2008-06-20 Thread Will Swain
Check your mapping to the CFIDE directory. What happens if you browse to http://www.yourdomain.com/cfide/ Will -Original Message- From: Matthew Smith [mailto:[EMAIL PROTECTED] Sent: 20 June 2008 01:38 To: CF-Talk Subject: cfinput required=yes not generating pop-up I have a cfform,

Re: cfinput required=yes not generating pop-up

2008-06-20 Thread Richard White
is this issue arising on your testing server or on the live site? i have had this error occur almost everytime we have changed our hosting company or they have changed our vps over to a new server. we inform them of it and they tell us that they forget to set something on the server i know

Re: cfinput autosuggest froma database query

2008-04-29 Thread Andrew Scott
hehe Gone are the days when Application.cfm and onRequestEnd.cfm where used for header and footer to templates... Can I also suggest you migrate your Application.cfm to Application.cfc and begin to reap some new features it offers as well. Just a suggestion. -- Senior Coldfusion

Re: cfinput autosuggest froma database query

2008-04-29 Thread Dominic Watson
However, I realised !DOCTYPE was in my Applications.cfm, so excluding that from not to affacting staffData.cfc seems to have resolved the problem Did you figure out *why* this causes the problem? Basically, the ajax javascript takes the output of the request (your remote cfc call) and uses

Re: cfinput autosuggest froma database query

2008-04-29 Thread Kamru Miah
Can I also suggest you migrate your Application.cfm to Application.cfc and begin to reap some new features it offers as well. Thanks Andrew - I shall bear that in mind in my next new application. Kamru ~| Adobe® ColdFusion® 8

Re: cfinput autosuggest doesn't work with mozilla

2008-04-29 Thread Raymond Camden
I don't have the list of officially supported browsers for CF8 Ajax stuff - but it may be just that Moz 1.X isn't supported. On Tue, Apr 29, 2008 at 8:49 AM, Kamru Miah [EMAIL PROTECTED] wrote: Dear All, I had the cfinput with autosuggest working with a database query just fine (in Firefox),

Re: cfinput autosuggest froma database query

2008-04-28 Thread Dominic Watson
Have you tried returning an array? i.e. cfreturn ListToArray(ValueList(getSurnames.surname)) I think both should work but give that a try if you haven't already. Dominic -- Blog it up: http://fusion.dominicwatson.co.uk ~|

Re: cfinput autosuggest froma database query

2008-04-28 Thread Kamru Miah
Yes, I have tried an array to start with but changed it to string afterwards - no difference. However, I realised !DOCTYPE was in my Applications.cfm, so excluding that from not to affacting staffData.cfc seems to have resolved the problem. Thanks for your suggestion.

Re: cfinput=datefield display problems in IE7

2008-03-13 Thread Steve Logan
I was getting the same thing, so I played around a little bit with wrapping the cfinput in another div, and this seems to work in IE7 and FF2: div style=clear:both;position:relative;z-index:3;cfinput type../div div style=clear:both;position:relative;z-index:2;cfinput type../div div

RE: cfinput autosuggest styling problem

2008-02-08 Thread Brad Wood
Yeah, drop downs don't seem to obey z-indexes and always want to be on top. I can't speak to what fixes are out there, but they usually involve one of the following: * Dynamically hiding and re-showing drop-downs that are overlapped. * Floating an iframe behind the auto-suggest since that is the

Re: cfinput autosuggest styling problem

2008-02-08 Thread Dominic Watson
Yeah, drop downs don't seem to obey z-indexes and always want to be on top. Thanks for the reply, I finally found a solution that succinctly worked for me when I added z-index to my searching. ColdFusion creates a div around the input called [inputname]autosuggest. So in your stylesheet (or

Re: cfinput binding onchange

2008-01-29 Thread Dominic Watson
Ok, I have come up with a solution that works - if there's a better way please let me know! First, I created a couple of simple javascript functions to blur and then refocus the supplied input object after a given delay (object passed by id, IE won't do the delay thing the way I would like just

RE: cfinput-problems in CF8

2007-12-17 Thread Will Swain
PROTECTED] Sent: 17 December 2007 07:32 To: CF-Talk Subject: Re: cfinput-problems in CF8 Hi Will, the default mapping is on. /CFIDE C:\Inetpub\wwwroot\CFIDE Other than that I don't have a mapping. Why ? Uwe Do you have a cfide mapping set up? -Original Message- From: [EMAIL PROTECTED

Re: cfinput-problems in CF8

2007-12-17 Thread cf-talk
Hi Dave (and Chris and Will and everybody who answered), thank you ! You Dave gave me the correct direction. I changed my environment (and use the attribute SCRIPTSRC) similar to the following article: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_18653sliceId=2 I think it is a

RE: cfinput-problems in CF8

2007-12-16 Thread Bruce
I tried this in ColdFusion 8 on Netscape, Firefox and IE and it worked fine. Can you send the whole cfform? Bruce -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Sunday, December 16, 2007 7:06 AM To: CF-Talk Subject: cfinput-problems in CF8 Hi list, the

RE: cfinput-problems in CF8

2007-12-16 Thread Will Swain
Do you have a cfide mapping set up? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 16 December 2007 15:06 To: CF-Talk Subject: cfinput-problems in CF8 Hi list, the following expression (and others act very similar) work fine under ColdFusion 5 but not under

Re: cfinput-problems in CF8

2007-12-16 Thread Kris Jones
Is the field on your form spelled exactly the same, including case? I haven't tried it (because I don't use CFFORM these days), but from what I remember, CFFORM uses javascript, and javascript is case-sensitive. Cheers, Kris Hi list, the following expression (and others act very similar) work

Re: cfinput-problems in CF8

2007-12-16 Thread cf-talk
Hi Will, the default mapping is on. /CFIDE C:\Inetpub\wwwroot\CFIDE Other than that I don't have a mapping. Why ? Uwe Do you have a cfide mapping set up? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 16 December 2007 15:06 To: CF-Talk Subject:

RE: cfinput-problems in CF8

2007-12-16 Thread Dave Watts
Hi Will, the default mapping is on. /CFIDE C:\Inetpub\wwwroot\CFIDE Other than that I don't have a mapping. You will need to ensure that the URL http://yourserver/CFIDE/scripts/ resolves correctly, or you'll need to use the SCRIPTSRC attribute of CFFORM to point to wherever you've put the

Re: cfinput type=quot;filequot; accept=quot;application/msexcelquot;

2007-11-17 Thread Richard White
1) use correct mime type for excel files - it is NOT application/msexcel 2) the accept attribute, afaik, is for cffile tag, not for cfinput, and is executed on the server 3) the accept attribute, afaik, will only check the extension of uploaded file - even if i rename my .exe file as .xls it

RE: cfinput type=file width

2007-11-16 Thread Dave Francis
I'm not sure, but think you have to specify units - maybe try 350px;? -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Friday, November 16, 2007 10:49 AM To: CF-Talk Subject: cfinput type=file width Hi, i have a cfinput tag of type file and noticed that you cannot

Re: cfinput type=file width

2007-11-16 Thread Crow T. Robot
styling file input types is very unpredictable across browsers. might i suggest trying the size= attribute instead of trying to use css? On Nov 16, 2007 9:48 AM, Richard White [EMAIL PROTECTED] wrote: Hi, i have a cfinput tag of type file and noticed that you cannot change the width of it

Re: cfinput type=quot;filequot; width

2007-11-16 Thread Richard White
Thanks very much, i didnt even know about that size attribute :) i learned something new today!! Thanks again, worked perfectly ~| Check out the new features and enhancements in the latest product release - download the What's

RE: cfinput type=quot;filequot; width

2007-11-16 Thread Ben Nadel
? www.bennadel.com/ask-ben/ -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Friday, November 16, 2007 11:17 AM To: CF-Talk Subject: Re: cfinput type=quot;filequot; width Thanks very much, i didnt even know about that size attribute :) i learned something new today!! Thanks

RE: cfinput type=file width

2007-11-16 Thread Ben Nadel
From what I have heard / experienced, the File input is an odd input. For starters, you might want to add px to your width. Also, try using the size attribute as a backup. I am pretty sure that File inputs respond somewhat consistently to Size=50 (for example). .. Ben Nadel

Re: cfinput type=quot;filequot; width

2007-11-16 Thread Josh Nathanson
No problem. Hopefully one day they will make a file upload input that can do crazy stuff like, I don't know, follow CSS, or heck, give you access to style the button?!?! If you're using jQuery, there's a plugin that can help make the file input look better. You can use an image as the browse

Re: cfinput type=amp;quot;fileamp;quot; accept=amp;quot;application/msexcelamp;quot;

2007-11-16 Thread Richard White
ahhh, like it!!! thanks will ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now

Re: cfinput type=quot;filequot; accept=quot;application/msexcelquot;

2007-11-16 Thread Will Tomlinson
You could do some server side validation if you want. cfif ListLast(FORM.somefile, .) NEQ xls) Not allowed... try again. /cfif Will ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features -

Re: cfinput type=file accept=application/msexcel

2007-11-16 Thread Azadi Saryev
1) use correct mime type for excel files - it is NOT application/msexcel 2) the accept attribute, afaik, is for cffile tag, not for cfinput, and is executed on the server 3) the accept attribute, afaik, will only check the extension of uploaded file - even if i rename my .exe file as .xls it

Re: cfinput button image

2007-10-26 Thread Richard White
hi matt thanks for the feedback very good idea, ill just do the graphic, i thought that maybe there was a way to do it with the cfinput but never mind, thanks again ~| Get the answers you are looking for on the ColdFusion Labs

RE: cfinput button image

2007-10-26 Thread Matt Barfoot
Hello Richard, You could do with with css just do: div id=mydiv img id=myimg src=blah.. / cfinput ... / /div then in head or stylesheet of presentation page style div#mydiv {position: relative} img#myimg {position: absolute; top 5px; left 75px;} /style Obviously amend top, left to suit. I

Re: cfinput button image

2007-10-26 Thread Dave l
If you do this and then do anything like isdefined(form.submit) or structkeyexists that you either need to use a different form field or put a hidden filed in called submit. ~| Get involved in the latest ColdFusion

Re: CFINPUT type=datefield popup calendar underlaps other form fields

2007-09-11 Thread Andrew Scott
Yes I blogged about it a long time ago, and have reported it as a bug to adobe as well. On 9/12/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm using CFINPUT type=datefield to create a popup calendar and the calendar works fine but is showing up under other form fields and is hard to

Re: cfinput validate=SubmitOnce

2006-11-28 Thread Doug Brown
Well, I think I have gone and described the problem wrong. It is not the fact that the user can click the submit button twice, as much as that they can click back and submit again. If I expire the page after the form submittal, it poses another problem with server side validation. If they are

RE: cfinput validate=SubmitOnce

2006-11-28 Thread Richard Kroll
: Tuesday, November 28, 2006 8:16 AM To: CF-Talk Subject: Re: cfinput validate=SubmitOnce Well, I think I have gone and described the problem wrong. It is not the fact that the user can click the submit button twice, as much as that they can click back and submit again. If I expire the page after

Re: cfinput type password

2006-09-27 Thread Nick Tong - TalkWebSolutions.co.uk
sounds like the browser is asking that. On 27/09/06, Richard White [EMAIL PROTECTED] wrote: Hi, i have a form which is for users to change their password. When they have typed their current password, their new password, and retyped their new password, and all criteria is met they click on

Re: cfinput type password

2006-09-27 Thread Teddy Payne
Password Manager? This sounds like your browser my friend. Firefox has this sort of popup and can be turned off from Tools Options Privacy Passwords. Teddy On 9/27/06, Richard White [EMAIL PROTECTED] wrote: Hi, i have a form which is for users to change their password. When they have

RE: cfinput type password

2006-09-27 Thread Peterson, Chris
You could change the field names to not be called 'password', and the browser probably wont recognize it and wont prompt the user. Does anyone know if it uses the field name, or the 'password' type? Chris -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Wednesday,

Re: cfinput type password

2006-09-27 Thread Richard White
thanks for your help, yes it was the browser :) ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year.

RE: cfinput type password

2006-09-27 Thread Adkins, Randy
That is a browser issue. Probably IE. Look under Tools : Internet Options : Content : AutoComplete. Uncheck those boxes and you should be fine -Original Message- From: Richard White [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 27, 2006 1:05 PM To: CF-Talk Subject: cfinput type

RE: cfinput type password

2006-09-27 Thread Adkins, Randy
I think it uses the password TYPE -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 27, 2006 1:25 PM To: CF-Talk Subject: RE: cfinput type password You could change the field names to not be called 'password', and the browser probably wont

Re: cfinput type password

2006-09-27 Thread Richard White
while we are on the subject of the password type, is there anyway to make sure the boxes are cleared. what i mean by this is that if the user enters the retyped password different from the new password, of course the validation can only be done on the server - but when the action page it

RE: cfinput type password

2006-09-27 Thread Adkins, Randy
, September 27, 2006 1:26 PM To: CF-Talk Subject: Re: cfinput type password while we are on the subject of the password type, is there anyway to make sure the boxes are cleared. what i mean by this is that if the user enters the retyped password different from the new password, of course

Re: cfinput type password

2006-09-27 Thread Richard White
What I do at times is have the form resubmit back to itself, validate the entries, if invalid The form field is populated with form.password May not be the best solution but has worked very well thus far thanks that works :)

  1   2   3   >