RE: Forms not passing data?

2014-09-22 Thread UXB Internet
submissions of enctype=multipart/form-data to prevent uploading data. We have run into this many times where the submitted data in forms of this type is Null until they disable their internet security software. Dennis Powers UXB Internet - A website Design and Hosting Company P.O. Box 6028, Wolcott

Re: Forms not passing data?

2014-09-22 Thread Phillip Vector
prevent form submissions of enctype=multipart/form-data to prevent uploading data. We have run into this many times where the submitted data in forms of this type is Null until they disable their internet security software. Dennis Powers UXB Internet - A website Design and Hosting Company P.O

Re: Forms not passing data?

2014-09-22 Thread .jonah
to see if the user in question is running an internet security program of some kind. Many of the firewalls they install prevent form submissions of enctype=multipart/form-data to prevent uploading data. We have run into this many times where the submitted data in forms of this type is Null until

Re: Forms not passing data?

2014-09-22 Thread Phillip Vector
prevent form submissions of enctype=multipart/form-data to prevent uploading data. We have run into this many times where the submitted data in forms of this type is Null until they disable their internet security software. Dennis Powers UXB Internet - A website Design and Hosting

Re: Forms not passing data?

2014-09-22 Thread .jonah
data. We have run into this many times where the submitted data in forms of this type is Null until they disable their internet security software. Dennis Powers UXB Internet - A website Design and Hosting Company P.O. Box 6028, Wolcott, CT 06716 - T:203-879-2844 W: http

Re: Forms not passing data?

2014-09-21 Thread Dan G. Switzer, II
Are you posting the data via AJAX? There's a known issue w/IE9 and earlier w/AJAX POST operations, where if the server's keep alive timeout is lower than 60 seconds, it can cause IE problems and what you get is a request that doesn't post the data back to the server. -Dan On Sun, Sep 21, 2014

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
No. Just a straight form. No AJAX. I THINK I traced it down to a bug in Railo in that it needs write access to the Web-Inf directory. But we will see if the issue is solved or not later. On Sun, Sep 21, 2014 at 8:47 AM, Dan G. Switzer, II dswit...@pengoworks.com wrote: Are you posting the

Re: Forms not passing data?

2014-09-21 Thread Dave Watts
I don't know if this is a CFML issue or what... But perhaps someone has run across this and can offer a hand... form action=#myself#Login.CheckLogin method=post enctype=multipart/form-data input type=text name=username input type=Password

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
It was just a copy over from an old form. The old login page was a combo login/create account that had a picture upload as part of the creation process. I removed the enctype and I'm still getting the error. On Sun, Sep 21, 2014 at 10:12 AM, Dave Watts dwa...@figleaf.com wrote: I don't know

Re: Forms not passing data?

2014-09-21 Thread Russ Michaels
ISTR fusebox apps by default always used FormURL2Attributes tag o convert all the form and url scope to attributes scope. obviously it has been many many years since I looked at fusebox, although the thought of it still makes me ill :-) but perhaps this tag kills off the original scope in certain

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
The issue mainly is that it's not always happening all the time. So it's not repeatable as far as I can tell. On Sun, Sep 21, 2014 at 1:07 PM, Russ Michaels r...@michaels.me.uk wrote: ISTR fusebox apps by default always used FormURL2Attributes tag o convert all the form and url scope to

Re: Forms not passing data?

2014-09-21 Thread Russ Michaels
ok a few couple of reasons I can think of. you have an un-closed tag somewhere in the form, but it doesn't always get rendered, maybe some conditional logic causes it to only display for some people. Some other conditional logic that causes the page to get redirected or reloaded, thus without

Re: Forms not passing data?

2014-09-21 Thread Phillip Vector
Thanks for the tips. I'll see what I can find. On Sun, Sep 21, 2014 at 1:59 PM, Russ Michaels r...@michaels.me.uk wrote: ok a few couple of reasons I can think of. you have an un-closed tag somewhere in the form, but it doesn't always get rendered, maybe some conditional logic causes it

Forms not passing data?

2014-09-20 Thread Phillip Vector
I don't know if this is a CFML issue or what... But perhaps someone has run across this and can offer a hand... form action=#myself#Login.CheckLogin method=post enctype=multipart/form-data input type=text name=username input type=Password

Re: Spam management for forms handling

2014-04-23 Thread Larry Lyons
Hello Rob and everyone, Image captchas are undetectable by screen reading packages such as those used by the blind and lock out legitimate visitors. Very true, that's why from a 508 or WAI perspective Captchas cannot be made accessible. One alternative would be to create a random

RE: Spam management for forms handling

2014-04-23 Thread Robert Harrison
Image captchas are undetectable by screen reading packages such as those used by the blind and lock out legitimate visitors. What is [random value from earlier] plus twenty: ___ Yes, but then you'll lock out the stupid... oh, I mean the mathematically challenged. :-) Robert

Re: Spam management for forms handling

2014-04-23 Thread Claude Schnéegans
One alternative would be to create a random number, say between 0 and 9, then add 20 to it and store the result in a session variable. Personnaly, I consider such methods that require the visitor to do something quite unfriendly, especially for blind people, even insulting. It is much

RE: Spam management for forms handling

2014-04-23 Thread Robert Harrison
Personnaly, I consider such methods that require the visitor to do something quite unfriendly, especially for blind people, even insulting. It is much easier and transparent to use Javascript to add some value in some hidden field. I tend to agree. The Honey Pot field, while simple, has

Re: Spam management for forms handling

2014-04-23 Thread Andrew Scott
Actually the more sophisticated Spam programs do recognize Captcha. http://www.gscraper.com/ Gscraper supports Death by Captcha. In all honesty, despite the fact that I have a DBC account I am kind of scared to turn on captcha solving. My fear is that I'll deplete my DBC balance in no time due

RE: Spam management for forms handling

2014-04-20 Thread UXB
do spamers really care about character recognition? Do these characters really have to look su ugly? From my experience no they don't. I have been using BHCaptch written by Bobby Hartsfield that generates a captcha from separate a-z letter images. The images we use are easily readable with

RE: Spam management for forms handling

2014-04-20 Thread Byron Mann
http://www.ubergizmo.com/2014/04/google-develops-algorithm-that-can-decipher-its-own-captchas/ Thought this was interesting in the context of the thread. Byron Mann Lead Engineer Architect HostMySite.com ~| Order the Adobe

Re: Spam management for forms handling

2014-04-20 Thread Claude Schnéegans
Thought this was interesting in the context of the thread. I'm pretty sure Google has the resources to develop such algorithms, would it be juste for the fun of it, but spammers in general have neither the ressources neither the time and probably no interest at all to develop character

Spam management for forms handling

2014-04-17 Thread Ben
Hi Some of the forms we use CF to email out are getting hit with spam garbage. I'm seeing patterns in them I can use to catch it now, but wondered if there is a more general approach available I'm not aware of? Thanks much! Ben

Re: Spam management for forms handling

2014-04-17 Thread Jon Clausen
+1 for the honeypot. Depending on the type of submissions you are looking to get from your form, conversion rates also increase for valid submissions over captcha-protected inputs. Jon On Apr 17, 2014, at 1:00 PM, Robert Harrison rob...@austin-williams.com wrote: You can use: 1.

RE: Spam management for forms handling

2014-04-17 Thread Robert Harrison
You can use: 1. A honey pot field (a field hidden by CSS, with an indicator to leave this field blank); if it's filled it's probably a bot, so don't process... or 2. CFCAPTCHA to generate a captcha and make the user type what's shown; send only if it's a match... or

Re: Spam management for forms handling

2014-04-17 Thread Ben
Thanks for the suggestions! Will give them a try. Much appreciated. Be On Apr 17, 2014, at 10:05 AM, Jon Clausen jon_clau...@silowebworks.com wrote: +1 for the honeypot. Depending on the type of submissions you are looking to get from your form, conversion rates also increase for

Re: Spam management for forms handling

2014-04-17 Thread Rob Voyle
Some of the forms we use CF to email out are getting hit with spam garbage. I'm seeing patterns in them I can use to catch it now, but wondered if there is a more general approach available I'm not aware ~| Order the Adobe

Re: Spam management for forms handling

2014-04-17 Thread Ben
to Resolve Grief and Resentment http://www.appreciativeway.com/ 503-647-2378 or 503-647-2382 On 17 Apr 2014 at 9:54, Ben wrote: Hi Some of the forms we use CF to email out are getting hit with spam garbage. I'm seeing patterns in them I can use to catch it now

Re: Spam management for forms handling

2014-04-17 Thread Les Mizzell
Some of the forms we use CF to email out are getting hit with spam garbage. I'm seeing patterns in them I can use to catch it now, but wondered if there is a more general approach available I'm not aware of? Thanks much! I've had very good luck with a simple math (or other) question

Re: Spam management for forms handling

2014-04-17 Thread Ben
Oh, that's funny! I'll have to start using Donald as a question. Great idea! Ben On Apr 17, 2014, at 12:11 PM, Les Mizzell lesm...@bellsouth.net wrote: Some of the forms we use CF to email out are getting hit with spam garbage. I'm seeing patterns in them I can use to catch it now

RE: Spam management for forms handling

2014-04-17 Thread Robert Harrison
Oh, that's funny! I'll have to start using Donald as a question. Great idea! But what if they answer cartoon or Disney character. That would create a very bad user experience if you tell them they're wrong ... LOL Robert Harrison Director of Interactive Services Austin Williams

Re: Spam management for forms handling

2014-04-17 Thread Peter Donahue
and locking out visitors that depend on assistive hardware and software for computer screen access. Peter Donahue - Original Message - From: Rob Voyle robvo...@voyle.com To: cf-talk cf-talk@houseoffusion.com Sent: Thursday, April 17, 2014 1:25 PM Subject: Re: Spam management for forms handling

Re: Spam management for forms handling

2014-04-17 Thread Claude Schnéegans
+1 for the honeypot. + another one. You can also use an onclick on the submit button to fill a hidden field with some key text also hidden in your javascript. If the field is not set properly, dont process. ~| Order the

Re: Spam management for forms handling

2014-04-17 Thread Claude Schnéegans
Image captchas are undetectable by screen reading packages Exact, and anyway, do spamers really care about character recognition? Do these characters really have to look su ugly? These captchas really look ridiculous. ~|

Forms going into Barracuda

2014-01-13 Thread Steve LaBadie
I have numerous forms on the website that are being delivered to specific local email addresses. Generally they get delivered without issue. But on occasion a form will consistently get delivered to the recipient SPAM. I am being asked to insert some type of header record to indicate

Re: Forms going into Barracuda

2014-01-13 Thread Jochem van Dieten
On Mon, Jan 13, 2014 at 4:05 PM, Steve LaBadie wrote: I am being asked to insert some type of header record to indicate the message is coming from a local form that guarantees a person completed the fields. cfmailparam is your friend:

Re: Forms going into Barracuda

2014-01-13 Thread Russ Michaels
they shouldn't even need to do that. they simply need to whitelist the web server which sends the form so it is no spam filtered, and add it to your SPF record also. On Mon, Jan 13, 2014 at 3:05 PM, Steve LaBadie slaba...@po-box.esu.eduwrote: I have numerous forms on the website

Re: I need a CF alternative that supports flash forms

2013-08-13 Thread Ray Meade
Thanks guys, I was afraid that was the case. I wish I had the foresight to see CF Flash Forms going the way of the dinosaurs when I first developed this app. but at the time, CF Flash Forms was a fairly new feature and I was excited about using them. (after all, it made such nice looking forms

Re: I need a CF alternative that supports flash forms

2013-08-13 Thread Ray Meade
Jon, having my own license wouldn't really help. They're already using my old license and have the app. hosted internally, but they want to go with outside hosting so they can access the app. from anywhere without having to VPN into their network. (plus the database is stored on their hosting

Re: I need a CF alternative that supports flash forms

2013-08-13 Thread Russ Michaels
Ray, prior to CF10, with a single enterprise license you can do 10 cloud/vps installations, so unless they need more than that, and their existing license is an enterprise license, then it should suffice. The usage within a cluster also depends what type of cluster. If it is a load balancing

I need a CF alternative that supports flash forms

2013-08-12 Thread Ray Meade
I have a client that is using a ColdFusion application that I developed several years ago that relies heavily on the use of ColdFusion flash forms. They need to find an alternative to the ColdFusion hosting engine because of the licensing costs but the only two alternatives I can find is Railo

Re: I need a CF alternative that supports flash forms

2013-08-12 Thread Raymond Camden
I'd just tell em that nothing else supports it and the cost of CF STD is the cost of asking you to rebuild in HTML forms. (Although rebuilding in HTML forms would be a HUGE improvement.) On Mon, Aug 12, 2013 at 8:09 PM, Ray Meade raym...@yahoo.com wrote: I have a client that is using

Re: I need a CF alternative that supports flash forms

2013-08-12 Thread Scott Stroz
There are no other engines that support Flash forms. On Mon, Aug 12, 2013 at 9:09 PM, Ray Meade raym...@yahoo.com wrote: I have a client that is using a ColdFusion application that I developed several years ago that relies heavily on the use of ColdFusion flash forms. They need to find

Re: I need a CF alternative that supports flash forms

2013-08-12 Thread Russ Michaels
Flash forms are proprietary to adobe, so if you want to keep them then you gotta stick with cf. The only other alternative is redo them in html or flex. Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 13 Aug 2013 02:10, Ray Meade raym...@yahoo.com wrote: I have

Re: I need a CF alternative that supports flash forms

2013-08-12 Thread Jon Clausen
is the cost of asking you to rebuild in HTML forms. (Although rebuilding in HTML forms would be a HUGE improvement.) On Mon, Aug 12, 2013 at 8:09 PM, Ray Meade raym...@yahoo.com wrote: I have a client that is using a ColdFusion application that I developed several years ago that relies

jquery forms

2013-02-14 Thread John M Bliss
Hi! Time-back-way-back, my favorite way to do client-side form validation was Adobe Spry. It was super-easy to do color-coded alerts on empty required fields, email format validation, etc. Nowadays, I know that can all be done with roll-your-own JQuery but I'm wondering if you have a favorite

re: jquery forms

2013-02-14 Thread Jeff Garza
Subject: jquery forms Hi! Time-back-way-back, my favorite way to do client-side form validation was Adobe Spry. It was super-easy to do color-coded alerts on empty required fields, email format validation, etc. Nowadays, I know that can all be done with roll-your-own JQuery but I'm

Re: jquery forms

2013-02-14 Thread Carl Von Stetten
The jQuery Validation plugin is pretty awesome: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Also, that plugin is built into the ValidateThis framework: http://www.validatethis.org/ HTH, -Carl V. On 2/14/2013 8:00 AM, John M Bliss wrote: Hi! Time-back-way-back, my favorite

Re: What does +no+post+sending+forms+are+found do?

2012-09-27 Thread JR
I think this might be from XRumer, a forum/blog spam program. Someone posted about the same message a few months ago. John On Wed, Sep 26, 2012 at 10:00 PM, Les Mizzell lesm...@bellsouth.net wrote: On 9/25/2012 6:13 PM, =?ISO-8859-1?Q?Claude_Schn=E9egans wrote: It looks like a search

Re: What does +no+post+sending+forms+are+found do?

2012-09-26 Thread Les Mizzell
On 9/25/2012 6:13 PM, =?ISO-8859-1?Q?Claude_Schn=E9egans wrote: It looks like a search engine which is clumsily redirecting search result to some of your pages. Looking up the IP address it came from: IP: 194.190.33.234 Decimal:3267240426 Hostname: 194.190.33.234 ISP:

What does +no+post+sending+forms+are+found do?

2012-09-25 Thread Les Mizzell
In what looks like an injection attempt or something (?), what exactly does the following do? somepage.cfm?Result:+using+proxy+177.103.197.203:8080;+no+post+sending+forms+are+found; I've got a script in my application file that's stopped/caught a bunch of these over the last few days

Re: What does +no+post+sending+forms+are+found do?

2012-09-25 Thread Claude Schnéegans
It looks like a search engine which is clumsily redirecting search result to some of your pages. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Processing Forms with CF from jQuery Mobile AJAX

2011-06-20 Thread Rick Faircloth
I've been using jQuery to process forms via AJAX and CF for a couple of years without problem. But I've been working on some tutorials for jQuery Mobile and I'm a little confused about how it handles form processing. The tutorials and even docs are a little sketchy...at least I'm not finding

Strange errors when running CF from command line and running Flash Forms.

2011-01-06 Thread DURETTE, STEVEN J (ATTASIAIT)
Hi all, Recently I started running ColdFusion from the command line so I can see any errors/exceptions/etc live. While I was running a page that has a flash form in it, the following errors came up on the screen: 01/06 11:55:04 [jrpp-0] ERROR internal error: expected to get a state

Re: Strange errors when running CF from command line and running Flash Forms.

2011-01-06 Thread Dave Watts
While I was running a page that has a flash form in it, the following errors came up on the screen: 01/06 11:55:04 [jrpp-0] ERROR internal error: expected to get a state from key [//http://*REDACTED*/181282.mxml.cfswf] 01/06 11:55:08 [jrpp-0] ERROR internal error: expected to get a

RE: Strange errors when running CF from command line and running Flash Forms.

2011-01-06 Thread DURETTE, STEVEN J (ATTASIAIT)
Thank you. -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Thursday, January 06, 2011 1:18 PM To: cf-talk Subject: Re: Strange errors when running CF from command line and running Flash Forms. The [jrpp-0] bit isn't relevant for your search, as it just designates

Javascript and CF flash forms

2010-10-23 Thread Monique Boea
Can javascript be used with CF flash forms? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk

Conditional Forms

2010-05-06 Thread Ian Vaughan
Hi I am trying to create a web form with conditional form fields and was wondering the best way to do this with CSS and javascript? I am trying to get the form so when a user clicks 'yes' on question 1 it will show question 2, if they click no it will display the text 'please call ' The

Re: Conditional Forms

2010-05-06 Thread Bryn Parrott
The short answer to your question is 'Yes', of course you can, and use javascript (probably best done with JQuery library) will give the best user experience although some might say Flash or Flex will do it better. In any case, using javascript, in principle, you have a number (10 in your

Flash Forms Stopped Working In ColdFusion 9

2010-04-01 Thread Larry Peery
We moved our websites, many of which use Flash Forms, from a server running ColdFusion 7 to a server running ColdFusion 9. At first all the Flash Forms in the various websites worked fine. However, on the same day all the Flash Forms stopped working on the ColdFusion 9 server. No changes

RE: Flash Forms Stopped Working In ColdFusion 9

2010-04-01 Thread DURETTE, STEVEN J (ATTASIAIT)
, April 01, 2010 3:45 PM To: cf-talk Subject: Flash Forms Stopped Working In ColdFusion 9 We moved our websites, many of which use Flash Forms, from a server running ColdFusion 7 to a server running ColdFusion 9. At first all the Flash Forms in the various websites worked fine. However, on the same

Re: Flash Forms Stopped Working In ColdFusion 9

2010-04-01 Thread Larry Peery
No, it is Win 2003. Any chance you moved to a Win 2008 server? We had a similar problem and it turned out that after we set everything up Win2K8 re-secured a couple of directories and there were security exceptions in the log. We moved our websites, many of which use Flash Forms, from

Retaining data in flash forms

2010-03-16 Thread Torrent Girl
I love using flash forms but I can't seem to get the form to retain the form data if the form is refreshed. Is there a setting to retain the form data? I tried the classic value=form.variable...but its not working. Any suggestions? There is an attribute called preservedata but setting

Forms Processing: Updating Only Changed Data

2010-03-10 Thread Blizzm
We have several lengthy forms that are going to be used for updating records and various data.  We are also looking at recording which form fields have been updated. Is there a means for updating only those records which have changed?  I was thinking of looping through a form collection

Re: Forms Processing: Updating Only Changed Data

2010-03-10 Thread Eric Cobb
://www.cfgears.com Blizzm wrote: We have several lengthy forms that are going to be used for updating records and various data. We are also looking at recording which form fields have been updated. Is there a means for updating only those records which have changed? I was thinking of looping

Re: Forms Processing: Updating Only Changed Data

2010-03-10 Thread Tom McNeer
Some of the answer depends on your overall architecture. The first step would be to retrieve the relevant database record using the ID passed from your form. That would give you, in some manner (a query record, a bean, whatever) a representation of the existing data. Then you could write a

Re: Forms Processing: Updating Only Changed Data

2010-03-10 Thread Eric Cobb
the form any value that doesn't match its corresponding hidden value has been changed. thanks, eric cobb ecar technologies, llc http://www.cfgears.com Blizzm wrote: We have several lengthy forms that are going to be used for updating records and various data. We are also looking

PDF forms submitting to URL

2010-02-10 Thread Chad Gray
I am experimenting with a form in a PDF. It submits the FDFX data to a ColdFusion page http://foo.com/takeInFDF.cfm How do I parse the data on the CF page? I CFDumped the FORM and URL scope and they are empty. Anyone know how the FDFX xml data is passed to the URL so I can parse it?

Re: PDF forms submitting to URL

2010-02-10 Thread Leigh
Try dumping the content field from getHttpRequestData(). IIRC, you could use iText's fdf parser to read the data. -Leigh ~| Want to reach the ColdFusion community with something they want? Let them know on the House

RE: PDF forms submitting to URL

2010-02-10 Thread Chad Gray
AM To: cf-talk Subject: Re: PDF forms submitting to URL Try dumping the content field from getHttpRequestData(). IIRC, you could use iText's fdf parser to read the data. -Leigh ~| Want to reach the ColdFusion

RE: SOT: ajaxCFC/JavaScript/dynamic forms

2009-10-23 Thread Bryan Stevenson
Hey Rick, I use jQuery for a tabbed interface and serializing formsthat's it! I'm realizing there is more I should know about jQuery and it's usage with ajaxCFClooking for decent tutorials or docs ;-) When I say serialize I mean: str = $(#+form).serialize(); (form being the argument

RE: SOT: ajaxCFC/JavaScript/dynamic forms

2009-10-23 Thread Rick Faircloth
, October 23, 2009 11:36 AM To: cf-talk Subject: RE: SOT: ajaxCFC/JavaScript/dynamic forms Hey Rick, I use jQuery for a tabbed interface and serializing formsthat's it! I'm realizing there is more I should know about jQuery and it's usage with ajaxCFClooking for decent tutorials or docs

RE: SOT: ajaxCFC/JavaScript/dynamic forms

2009-10-23 Thread Bryan Stevenson
Thanks Rick, I think I have some reading to do ;-) My implementation of ajaxCFC is quite different than it comes out of the box (i.e. added a masterhandler CFC in the root to pass all AJAX calls through to non-web accessible CFCs that are public and not remote.there is also a custom

SOT: ajaxCFC/JavaScript/dynamic forms

2009-10-22 Thread Bryan Stevenson
Hi All, I'm not the best when it comes to JavaScript and I've got a question about forms that are created in a CFC method and then passed back to the client to be displayed in a DIV (meant to look like a pop-up). SCENARIO

Re: SOT: ajaxCFC/JavaScript/dynamic forms

2009-10-22 Thread Tony Bentley
Generally when I want to return HTML, I use the JQuery load() function. When I want to return a data set in JSON: array or query object, return a boolean value or a single vfalue I use ColdFusion's native CFAJAXPROXY. I suggest returning the form using load(), which then will fix your issue.

Re: SOT: ajaxCFC/JavaScript/dynamic forms

2009-10-22 Thread Bryan Stevenson
Thanks for the quick reply Tony! I should note that I am NOT currently using jQuery with my AJAX calls except for serializing the form. I'm also doing this with openBD where CFAJAXPROXY was a bit off lat time I tested it (but as you said...that's for the simple stuff). Do you have a code

Re: SOT: ajaxCFC/JavaScript/dynamic forms

2009-10-22 Thread Bryan Stevenson
PS...I have just noticed the ajaxCFC zip file contains the core folder AND the branches folder.and so now I've seen the jQuery branch ;-) I bet the solutions to many of my issues questions reside in there!! ;-) - Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge

Re: SOT: ajaxCFC/JavaScript/dynamic forms

2009-10-22 Thread Tony Bentley
There are plenty of examples online. Check the jQuery docs. I can only advise that when using load, you will need to pass all of your parameters using a URL string, which will limit what you can pass to the posting page. I also suggest passing a timestamp so the browser never caches the

Re: SOT: ajaxCFC/JavaScript/dynamic forms

2009-10-22 Thread Bryan Stevenson
Thanks again Tony! So to make sure I'm barking up the right tree load() is intended to (sorry for lack of a the proper technical term) make a form visible to JS if the form was added to the page after it initially loads (i.e. retrieved the HTML string containing the form from an ajax call to

RE: ajaxCFC/JavaScript/dynamic forms

2009-10-22 Thread Rick Faircloth
-talk Subject: SOT: ajaxCFC/JavaScript/dynamic forms Hi All, I'm not the best when it comes to JavaScript and I've got a question about forms that are created in a CFC method and then passed back to the client to be displayed in a DIV (meant to look like a pop-up). SCENARIO

RE: SOT: ajaxCFC/JavaScript/dynamic forms

2009-10-22 Thread Rick Faircloth
...@electricedgesystems.com] Sent: Thursday, October 22, 2009 6:55 PM To: cf-talk Subject: Re: SOT: ajaxCFC/JavaScript/dynamic forms Thanks again Tony! So to make sure I'm barking up the right tree load() is intended to (sorry for lack of a the proper technical term) make a form visible to JS

RE: CFPDF can not flatten liveCycle Forms - so how do you?

2009-09-18 Thread Brook Davies
be useful to a CF developer? Brook -Original Message- From: Jochem van Dieten [mailto:joch...@gmail.com] Sent: September-01-09 2:46 AM To: cf-talk Subject: Re: CFPDF can not flatten liveCycle Forms - so how do you? On Mon, Aug 31, 2009 at 3:46 PM, Brook Davies wrote: I tried

RE: CFPDF can not flatten liveCycle Forms - so how do you?

2009-09-18 Thread Brook Davies
On the same note, does any one know what LiveCycle ES costs? Is it true its 50k + ? Is that the only solution to signing XFA forms? -Original Message- From: Brook Davies [mailto:cft...@logiforms.com] Sent: September-18-09 8:52 AM To: cf-talk Subject: RE: CFPDF can not flatten

Re: CFPDF can not flatten liveCycle Forms - so how do you?

2009-09-18 Thread Dave Watts
On the same note, does any one know what LiveCycle ES costs? Is it true its 50k + ? Is that the only solution to signing XFA forms? LiveCycle ES is a suite of products. Buying it is kind of like buying a car - you can get package deals, and the price for the individual components

Re: CFPDF can not flatten liveCycle Forms - so how do you?

2009-09-03 Thread Arsalan Tariq Keen
, September 02, 2009 9:52 PM To: cf-talk cf-talk@houseoffusion.com Subject: RE: CFPDF can not flatten liveCycle Forms - so how do you? Come on Arsalan, you say then let me tell you ... it's not much of a big deal :) you can use iText java So then, please do tell me, or show me the code that makes

Re: CFPDF can not flatten liveCycle Forms - so how do you?

2009-09-03 Thread Leigh
From: Arsalan Tariq Keen This code is working fine... That only works for older LiveCycle forms. I believe there were changes in either 8.1 or 8.2(?). Afaik, the only way to flatten the newer forms is to use LiveCycle. -Leigh

RE: CFPDF can not flatten liveCycle Forms - so how do you?

2009-09-02 Thread Brook Davies
To: cf-talk Subject: RE: CFPDF can not flatten liveCycle Forms - so how do you? It does not seem to be possible to do flatten XFA forms, even directly via itext. We've tried -Original Message- From: Arsalan Tariq Keen [mailto:arsalk...@hotmail.com] Sent: September-01-09 4:28 AM

Re: CFPDF can not flatten liveCycle Forms - so how do you?

2009-09-01 Thread Jochem van Dieten
On Mon, Aug 31, 2009 at 3:46 PM, Brook Davies wrote: I tried this to to the 'Adobe PDF' printer with no luck. I didn't get a result or find a way to specify an output file. Have you got this working? Never tried it with ColdFusion / cfprint, but I got it working with LiveCycle and their

Re: CFPDF can not flatten liveCycle Forms - so how do you?

2009-09-01 Thread Paul Hastings
might ask on the iTex list, it will be amusing anyway. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: CFPDF can not flatten liveCycle Forms - so how do you?

2009-09-01 Thread Arsalan Tariq Keen
if you people are concerned about flattening LiveCucle Forms (xml based pdf forms) using coldfusion ... then let me tell you ... it's not much of a big deal :) you can use iText java library pre-installed with CF (Adobe CF/Railo/Bluedragon) directly for this purpose :) Regards, Arsalan

RE: CFPDF can not flatten liveCycle Forms - so how do you?

2009-09-01 Thread Brook Davies
It does not seem to be possible to do flatten XFA forms, even directly via itext. We've tried -Original Message- From: Arsalan Tariq Keen [mailto:arsalk...@hotmail.com] Sent: September-01-09 4:28 AM To: cf-talk Subject: Re: CFPDF can not flatten liveCycle Forms - so how do you

RE: CFPDF can not flatten liveCycle Forms - so how do you?

2009-08-31 Thread Brook Davies
: CFPDF can not flatten liveCycle Forms - so how do you? On Fri, Aug 28, 2009 at 7:37 PM, Brook Davies wrote: CFPDF can only flatten forms created with Acrobat , the docs say flatten: applies to forms created in Acrobat only (not forms created in LiveCycle);. So how do you flatten a liveCycle

RE: CFPDF can not flatten liveCycle Forms - so how do you?

2009-08-31 Thread Brook Davies
I tried something else, with no success. I tried setting the permissions on a PDF so that allowFillIns,allowModifyContents, and allowModifyAnnotations were all disabled. Again, this works to 'flatten' AcroForms but again just removes all fields and data from XFA forms. Why does Adobe make it so

Re: CFPDF can not flatten liveCycle Forms - so how do you?

2009-08-31 Thread Dave Watts
Why does Adobe make it so difficult to work with XFA forms? Actually, they make it very easy to work with them. All you have to do is buy LC Output ES! Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction

Re: CFPDF can not flatten liveCycle Forms - so how do you?

2009-08-31 Thread Dave Watts
I tried this to to the 'Adobe PDF' printer with no luck. I didn't get a result or find a way to specify an output file. Have you got this working? You might want to Google command-line pdf printing. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the

CFPDF can not flatten liveCycle Forms - so how do you?

2009-08-28 Thread Brook Davies
CFPDF can only flatten forms created with Acrobat , the docs say flatten: applies to forms created in Acrobat only (not forms created in LiveCycle);. So how do you flatten a liveCycle form and is it even possible at all? Brook

Re: CFPDF can not flatten liveCycle Forms - so how do you?

2009-08-28 Thread Dave Watts
CFPDF can only flatten forms created with Acrobat , the docs say flatten: applies to forms created in Acrobat only (not forms created in LiveCycle);. So how do you flatten a liveCycle form and is it even possible at all? It's not possible using CFPDF or DDX directly from ColdFusion

Re: CFPDF can not flatten liveCycle Forms - so how do you?

2009-08-28 Thread Jochem van Dieten
On Fri, Aug 28, 2009 at 7:37 PM, Brook Davies wrote: CFPDF can only flatten forms created with Acrobat , the docs say flatten: applies to forms created in Acrobat only (not forms created in LiveCycle);. So how do you flatten a liveCycle form and is it even possible at all? cfprint them

RE: CFPDF can not flatten liveCycle Forms - so how do you?

2009-08-28 Thread Brook Davies
Thanks, I'll try that... -Original Message- From: Jochem van Dieten [mailto:joch...@gmail.com] Sent: August-28-09 1:31 PM To: cf-talk Subject: Re: CFPDF can not flatten liveCycle Forms - so how do you? On Fri, Aug 28, 2009 at 7:37 PM, Brook Davies wrote: CFPDF can only flatten forms

Flash forms problem

2009-07-07 Thread Kris Sisk
I just upgrade to CF 8 and the upgrade did not go well. I ended up having to configure the connectors in IIS6 manually. I've gotten everything working again except for flash forms. They start to load fine, but some things don't. Notably, any text or html cfformitems don't load at all and any

  1   2   3   4   5   6   7   8   9   10   >