Re: jvm.config and Mac OS X

2009-08-28 Thread Dave l
yeah that won't quite do the trick, you still need to change a file, i blogged it here http://www.deliciouscoding.com/post.cfm?entry=change-default-leopard-java-jdk-1-5-to-1-6-the-easy-way >This has been driving me batty for quite a while > >A few months back, Appel released an update to Java.

Re: adding a deciamal point in front of a number

2009-08-28 Thread j s
>Or if you want a 'real' number, if you're more comfortable with that, >then just divide by 100: > > > > #newNum# thanks for clearing that up guys!! ~| Want to reach the ColdFusion community with something they want? Let the

ipn, sample code from paypal, and the sandbox, oh my!

2009-08-28 Thread Matthew Smith
I am using the test ipn message to send to my .cfm file. I am logging the incoming attributes, the resulting str varible from the sample code, and the cfhttp response. This is a fusebox 3 application, so incoming url and form variables are copied to the attributes scope. Hope that makes sen

Re: adding a deciamal point in front of a number

2009-08-28 Thread Jason Fisher
Or if you want a 'real' number, if you're more comfortable with that, then just divide by 100: #newNum# ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing li

RE: adding a deciamal point in front of a number

2009-08-28 Thread brad
Ready for it? ColdFusion is a typeless language! This means you don't have worry about whether it is a string or not. In fact both numbers and strings (among others) are all stored as a java.lang.String on the back end. When you go to perform a numeric operation on a variable, ColdFusion casts

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

adding a deciamal point in front of a number

2009-08-28 Thread j s
What would be the best way to add a decimal point in front of number, say 20 to .20? #newNum# Is this ok? If I need to do calculations will I have issues with newNum because it's a string? ~| Want to reach the 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: submit one big form post of all tabs

2009-08-28 Thread Glyn Jackson
When you are using tabs with "source" it treats it as a page on its own so even if you include the form around the whole cflayout if you dont include the start and end cffrom tags again you will get a CF error, its the same with any thing you include in a tab layout using "source" or a bind i

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. To

Re: submit one big form post of all tabs

2009-08-28 Thread Cutter (ColdFusion)
I can't see why you wouldn't be able to. The tabs are an implementation of ExtJs 1.1, and I've done it with that. As long as the tab container is wrapped in your opening and closing tags, and you aren't remotely populating the tab contents (via an ajax load) then it should be possible. Steve

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: http://www.houseoffusion.com/groups/cf-talk/message.cfm/message

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: Using CFReport in a Websphere (linux) environment

2009-08-28 Thread Dave Phillips
Ain't that the truth - I guess I'm just lucky... Okay, I saw that post, and I don't have the ability to change the application environment by installing anything, but I do have the ability to modify the JVM configuration. It seems to me that the problem is that the system cannot find the class t

Re: Tomcat Server

2009-08-28 Thread Kevin Roche
Thanks Larry, I will try that next week. Kevin On Fri, Aug 28, 2009 at 1:55 PM, Larry Lyons wrote: > > > If you're using Eclipse you'll need to install the Webtools plugin, > > http://www.eclipse.org/webtools/. As an alternative you can also use > > the MyEclipse plugin, it makes the controll

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/ http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_a

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. ~~~

jvm.config and Mac OS X

2009-08-28 Thread Scott Stroz
This has been driving me batty for quite a while A few months back, Appel released an update to Java. After installing this update, I was unable to use or hit web services that used SSL. Typically this would not be a huge deal, but the main project I am on right now needs to make calls to Skip

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 : > > I am using CF8 and want to use  cfinput type="datefie

cfinput type="datefield"

2009-08-28 Thread Glyn Jackson
I am using CF8 and want to use cfinput type="datefield" but without "cfinput" does that make sense? ok I want to use ext popup calender for a input box but not via cfinput tag i.e. input type="datefield" can I still use the library without cfinput? if so can soneone give me an example? T

Re: How to make ODBC Connection to Access DB with MDW Connection

2009-08-28 Thread I. Addoum.
you have to use JDBC-ODBC. simply select "Microsoft Access" driver NOT "ODBC Socket" when you create your data source. and the trick is to supply the following Database File = c:\test\x.mdb System Database File = c:\test\Security.mdw Use Default User name = true (checked) open show advan

Re: submit one big form post of all tabs

2009-08-28 Thread Glyn Jackson
I see, never mind back to the drawing board. thanks. ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/m

Re: Coldfusion Threads

2009-08-28 Thread Byte Me
<<>> Thanks for the input, I went ahead and tried it, but CF only joins threads that are created in the same template. Ideally, a listener needs to be set up that will perform some action if a specific thread is aborted/no longer running. Perhaps CF 10 will add this functionality. ~~

Re: Tomcat Server

2009-08-28 Thread Larry Lyons
> If you're using Eclipse you'll need to install the Webtools plugin, > http://www.eclipse.org/webtools/. As an alternative you can also use > the MyEclipse plugin, it makes the controlling J2EE servers a lot > easier, http://www.myeclipseide.com/htmlpages-func-display-pid-55. > html Forgot to

Re: Tomcat Server

2009-08-28 Thread Larry Lyons
> Hi, > > I am trying to set up an apache tomcat server to run CF7, CF8 and > railo on the same machine. The idea came from last week's Online CF > User group presentation. > > I want to start and stop tomcat from eclipse for flexibility but am > getting stuck with configuring it so that ecli

RE: submit one big form post of all tabs

2009-08-28 Thread Mark Kruger
Ah... Right ... Actually I think it treats those "includes" more like frames or ajaxian innerHTML elements. You would likely have to write some JS to extract the form elements prior to submission. Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.nec

Tomcat Server

2009-08-28 Thread Kevin Roche
Hi, I am trying to set up an apache tomcat server to run CF7, CF8 and railo on the same machine. The idea came from last week's Online CF User group presentation. I want to start and stop tomcat from eclipse for flexibility but am getting stuck with configuring it so that eclipse can see it. i

Re: submit one big form post of all tabs

2009-08-28 Thread Glyn Jackson
yes that would work but not with using includes with the tabs or source. the issue is that when you do it with an include it does not work due to CF thinking you dont have a completed form >Sorry I meant "wrapping the whole set of tabs in 'form tags'" ... I >didn't mean to confuse you :) >