Re: cfgrid showing number of records

2007-11-11 Thread James Holmes
The functionality of the CFGRID tag is limited, to keep things simple. If any more customisation is necessary, the underlying Ext object can be obtained via JS and used directly. The only limiting factor, then, is that an old version of Ext is used in CF. On Nov 11, 2007 3:19 AM, Richard White <[E

RE: Dynamic Variable in cfcase statement throws error.

2007-11-11 Thread Dave Watts
> it could be slow, but you could write your switch statement > on the fly into a file with a dynamic name in a temp folder, > let your main page include that file, then delete it upon > completion.. no idea what that would do to your overheads tho. Why on earth would you do that? That defeats

RE: missing Java close() method in ImageInfo.class

2007-11-11 Thread Dave Watts
> Currently writing the 7 and 6.1 variants of this portion and > I'm having difficulty with the ImageInfo class as recommended > in Chapter 25 of the CFMX Advanced App Dev book (3rd ed). The > problem is that I can get all the info i need using the java > class, but when I go to perform any ope

Re: Dynamic Variable in cfcase statement throws error.

2007-11-11 Thread James Holmes
At that point a series of cfif statements might be a better bet. On Nov 12, 2007 2:05 PM, Lars Gronholt <[EMAIL PROTECTED]> wrote: > it could be slow, but you could write your switch statement on the fly into a > file with a dynamic name in a temp folder, let your main page include that > file,

Re: Dynamic Variable in cfcase statement throws error.

2007-11-11 Thread Lars Gronholt
it could be slow, but you could write your switch statement on the fly into a file with a dynamic name in a temp folder, let your main page include that file, then delete it upon completion.. no idea what that would do to your overheads tho.

missing Java close() method in ImageInfo.class

2007-11-11 Thread Lars Gronholt
Hi all, been awhile since i've posted. i came across an interesting one today, i'm building a backwards compatible forum system and trying to trap image resolution sizes in avatar uploads. Currently writing the 7 and 6.1 variants of this portion and I'm having difficulty with the ImageInfo cla

Re: I am looking for some good tutorials or examples for learning OOP

2007-11-11 Thread Brian Rinaldi
Check the references for my Beginner's Guide to Mach-II ( http://www.remotesynthesis.com/blog/index.cfm/2007/11/6/A-Beginners-Guide-to-MachII-for-ColdFusion) - which itself is a good OOP tutorial (I hope) and you will see tutorials on Objects and Composition with no framework, with ColdSpring, with

Re: I am looking for some good tutorials or examples for learning OOP

2007-11-11 Thread Nick Tong
also maybe try some of the workshops at cfFrameworks http://www.cfframeworks.com/blog/index.cfm/Workshop On 11/11/2007, Adrian Lynch <[EMAIL PROTECTED]> wrote: > > I'm not sure if it will be too much too soon, but have a quick look at > transfer. > > http://groups.google.com/group/transfer-dev > >

RE: I am looking for some good tutorials or examples for learning OOP

2007-11-11 Thread Adrian Lynch
I'm not sure if it will be too much too soon, but have a quick look at transfer. http://groups.google.com/group/transfer-dev http://www.transfer-orm.com/ Adrian -Original Message- From: Erik-Jan Jaquet [mailto:[EMAIL PROTECTED] Sent: 11 November 2007 19:04 To: CF-Talk Subject: I am look

CFEclipse with SVN also including CFCunit and Selenium testing

2007-11-11 Thread John Mason
For those of you trying to figure out how to set up this up. I just finished up a step-by-step set of instructions on how to setup CFEclipse with Subversion and also including continuous testing with CFCUnit and Selenium. Enjoy! http://labs.fusionlink.com/katapult/index.cfm?page=articles/cfeclipse

cflogout problem

2007-11-11 Thread Richard White
Hi, i have the cflogin page set up on the application.cfc page as it is in coldfusion livedocs. i have a logout button on each page - when the user clicks the button it goes to a page to set a session variable logoutrequested and sends the user back to the login page. the application.cfc page

I am looking for some good tutorials or examples for learning OOP

2007-11-11 Thread Erik-Jan Jaquet
Hi all, I am looking for some good tutorials, or example apps (open source projects) on using Object Oriented Programming. I have read several good ones, and I am starting to grasp the concept. But the tutorials I read (cfoop.org among others) only discussed a object that has no connection to

RE: Could not start the Verity K2Server Service Error 1067

2007-11-11 Thread Dave Watts
> I keep getting the following error when trying to restart the > 'Verity k2Server' service: > > --- > Could not start the Verity K2Server (Version 2.20pr6) service > on local computer. > Error 1067: The process terminated unexpectedly. > --- > > Has anybody come across this problem before, and

Re: Javascript enabled

2007-11-11 Thread Richard White
> $.get('shop/includes/setjsenabled.cfm'); // this is the ajax call hey josh, this seems very simple, thanks :) richard ~| ColdFusion 8 - Build next generation apps today, with easy PDF and Ajax features - download now http://d

RE: Javascript enabled

2007-11-11 Thread Jim Davis
> -Original Message- > From: Andrew Grosset [mailto:[EMAIL PROTECTED] > Sent: Sunday, November 11, 2007 12:56 AM > To: CF-Talk > Subject: Re: Javascript enabled > > My vote goes to Bobby's solution...elegant and simple > > There is a typo in the example though > change: > document.getElem

Could not start the Verity K2Server Service Error 1067

2007-11-11 Thread Jose Diaz
Hello All, I am having a problem with a webserver we run ColdfusionMX 6.1 on. I keep getting the following error when trying to restart the 'Verity k2Server' service: --- Could not start the Verity K2Server (Version 2.20pr6) service on local computer. Error 1067: The process terminated unexpecte

Re: Dynamic Variable in cfcase statement throws error.

2007-11-11 Thread Jochem van Dieten
Casey Dougall wrote: > Is there another way I can get around this? No. Better performance by requiring a constant instead of a variable is the whole idea behind switch/case. Jochem ~| Enterprise web applications, build robust,

Dynamic Variable in cfcase statement throws error.

2007-11-11 Thread Casey Dougall
Is there another way I can get around this? I really don't want to manually type out the values if I don't need to but, the following throws an error and I know the variable is good. Putting a dynamic variable in a cfcase statement cf7 throws one ugly error. Column -1 Detail [empty string] Know