Gmail/Facebook Style jQuery Chat

2010-06-18 Thread Les Irvin
Does anyone know if there is there any CF-based version of something like this available? http://anantgarg.com/2009/05/13/gmail-facebook-style-jquery-chat/ Thanks, Les ~| Order the Adobe Coldfusion Anthology now!

RE: Gmail/Facebook Style jQuery Chat

2010-06-18 Thread andy matthews
I recently gave a presentation to the New York CFUG where I demoed a jquery chat app that I wrote. It's not a finished product by any means but it might get you started in the right direction. http://snurl.com/x0kq3 andy -Original Message- From: Les Irvin

jQuery alternative to cfwindow?

2010-06-18 Thread Joe None
Is there a library or simple method to duplicate what cfwindow does with jQuery? I'm on an older version of CF and like the modal pop-up window cfwindow creates. If this is an option in jQuery could someone point me to an example? Thank you

RE: jQuery alternative to cfwindow?

2010-06-18 Thread andy matthews
If you're writing an entire app then you might consider jQuery UI which has widgets like that. Alternately ExtJS (now Sencha) offers the same widgets along with a LOT more stuff. andy -Original Message- From: Joe None [mailto:drue...@comcast.net] Sent: Friday, June 18, 2010 6:14 AM

Re: jQuery alternative to cfwindow?

2010-06-18 Thread Raymond Camden
I'll ditto the jQuery UI suggestion. Here is a blog article on it that may help: http://www.coldfusionjedi.com/index.cfm/2009/2/2/Creating-a-Dialog-with-jQuery-UI-2 On Fri, Jun 18, 2010 at 6:24 AM, andy matthews li...@commadelimited.com wrote: If you're writing an entire app then you might

Re: jQuery alternative to cfwindow?

2010-06-18 Thread Joe None
Thanks for the tips guys. What I like about cfwindow though is it has the modal option AND I can pass a variable into it. I'll take the variable sent in and custom the cfwindow, as well as track certain data from the cfwindow. This may be a bit too much to ask from jQuery.

Re: State of cffileupload

2010-06-18 Thread Thomas Harper
Could it be the disk itself? My external HD is... FAT I think which had a 4GB limit. It is NTFS and has 10 GB of space left. I have been able to get cffileupload to work on files lower than 2 GB, but if I put any value greater than 2047 in the maxUploadSize attribute regardless of the value

Re: jQuery alternative to cfwindow?

2010-06-18 Thread Scott Stroz
Nope not at all. jQuery UI dialog has a modal property, and if you are loading the contents of the dialog via AJAX request, you can pass any data you like in the request. On Fri, Jun 18, 2010 at 8:23 AM, Joe None drue...@comcast.net wrote: Thanks for the tips guys. What I like about cfwindow

Re: jQuery alternative to cfwindow?

2010-06-18 Thread Brian McCairn
http://cfwindow.riaforge.org/ ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion Archive:

Re: jQuery alternative to cfwindow?

2010-06-18 Thread Joe None
The cfwindow example on riaforge looks good and the load external URL would work great. I'll give this one a shot. Again, thanks for the help guys. ~| Order the Adobe Coldfusion Anthology now!

ColdFusion 9 CSS Reset Warning

2010-06-18 Thread Paul Alkema
Hi All, I just upgraded one my old sites to CF9 and was surprised all of a sudden to see some changes in formatting on some pages but not others. IE; strong tags not bolding, h1's looking different than previously and other issues as well. After some investigating I found the issue, apparently

Re: ColdFusion 9 CSS Reset Warning

2010-06-18 Thread Raymond Camden
Yep - this is a known issue. I just saw a blog entry on it a little while ago - and it had a good workaround too. Give me a minute to dig it up. On Fri, Jun 18, 2010 at 8:56 AM, Paul Alkema paulalkemadesi...@gmail.com wrote: Hi All, I just upgraded one my old sites to CF9 and was surprised

RE: ColdFusion 9 CSS Reset Warning

2010-06-18 Thread Paul Alkema
Ah, ok. I Googled it and didn't find much. Maybe I just didn't search the correct thing. Anyway, I fixed it by just going into the file on the server and commenting out the reset. Don't know if that was the correct thing to do or not, but it fixed it for me and my ajax tags seem to be ok.

Re: ColdFusion 9 CSS Reset Warning

2010-06-18 Thread Raymond Camden
http://nm1m.blogspot.com/2009/11/cfwindow-css-bug-workaround.html On Fri, Jun 18, 2010 at 8:59 AM, Raymond Camden rcam...@gmail.com wrote: Yep - this is a known issue. I just saw a blog entry on it a little while ago - and it had a good workaround too. Give me a minute to dig it up. On Fri,

list of declared functions

2010-06-18 Thread daniel kessler
I am receiving the error Routines cannot be declared more than once, which is true. This function can be declared in multiple places so it's sort of difficult to track. Is there a way I can test and check whether a function is already declared (please say yes, it's easy? Can I query for a

RE: ColdFusion 9 CSS Reset Warning

2010-06-18 Thread Paul Alkema
Thanks Ray, This was very helpful. -Original Message- From: Raymond Camden [mailto:rcam...@gmail.com] Sent: Friday, June 18, 2010 10:05 AM To: cf-talk Subject: Re: ColdFusion 9 CSS Reset Warning http://nm1m.blogspot.com/2009/11/cfwindow-css-bug-workaround.html On Fri, Jun 18, 2010 at

Re: SQL Gurus... can this query be written more efficiently?

2010-06-18 Thread Tami Burke
Why not perform your cflooping outside the SQL. This is much faster than forcing the query to manage the loop parsing and excution: cfset xsearch = '' cfloop list='#theModels#' index='i' cfset xsearch = xsearchor searchterm like '%#i#%' /cfloop cfif listlen(

Re: SQL Gurus... can this query be written more efficiently?

2010-06-18 Thread Tami Burke
Take the following query. Is there a more efficient way to handle the where clause? Specifically, the last two 'and' statements that loop through two different lists, one that includes results and one that excludes results. Thanks, Che select searchterm, searchtype, numresults, timestamp from

Re: SQL Gurus... can this query be written more efficiently?

2010-06-18 Thread Tami Burke
Why not perform your cflooping outside the SQL. This is much faster than forcing the query to manage the loop parsing and excution: cfset xsearch = '' cfloop list='#theModels#' index='i' cfset xsearch = xsearchor searchterm like '%#i#%' /cfloop cfif listlen(

Re: list of declared functions

2010-06-18 Thread Al Musella, DPM
When I use an included file, I set a variable = true. then in all places where you might want to include it again, you check for that variable, and if it is not present, include the file. if it is present, you don't include it. t 11:01 AM 6/18/2010, you wrote: I am receiving the error

Re: list of declared functions

2010-06-18 Thread daniel kessler
When I use an included file, I set a variable = true. then in all places where you might want to include it again, you check for that variable, and if it is not present, include the file. if it is present, you don't include it. I'm specifically hoping to avoid that. It means that I must

Re: SQL Gurus... can this query be written more efficiently?

2010-06-18 Thread Dave Watts
Why not perform your cflooping outside the SQL. This is much faster than forcing the query to manage the loop parsing and excution: Building the loop in or out of the CFQUERY tag makes no difference in performance. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/

RE: SQL Gurus... can this query be written more efficiently?

2010-06-18 Thread Che Vilnonis
Thanks all. In the end, Carl's idea to use NOT IN and Micheal's reminder to use SQL indexes allowed me to drop a good 1 to 1.5 seconds. Cool beans! -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Friday, June 18, 2010 12:26 PM To: cf-talk Subject: Re: SQL Gurus...

Re: SQL Gurus... can this query be written more efficiently?

2010-06-18 Thread Tami Burke
Building the loop in or out of the CFQUERY tag makes no difference in performance. My experience is that performance can be impacted slightly based on number of users, number of terms, and complexity of the query as a result of the parameters to be evaluated. We have found better overall

RE: Serving Files via cfcontent - how much processing is required

2010-06-18 Thread UXB Internet
Mark: otherwise I would say use mod_xsendfile I have sort of gone down the IIS road but have found a company that has an Apache emulator ISAPI that is willing to add that functionality to their product. http://www.helicontech.com/ape/ I will see what they come up with. Dave: A symlink is just

Re: list of declared functions

2010-06-18 Thread William Seiter
this can be built rather simply. 1. add to your Application.cfc in the OnRequestStart function cfset request.loadedFunctions = ArrayNew(1) / 2. change all of your functions to read like this: cfif not ListFindNoCase(ArrayToList(request.loadedFunctions,'[name of the function]',','))

Re: list of declared functions

2010-06-18 Thread Raymond Camden
You can do a simple isDefined. Combine it with isCustomFunction to complete. cfif isDefined(makeCowbell) and isCustomFunction(makeCowbell) On Fri, Jun 18, 2010 at 10:01 AM, daniel kessler dani...@umd.edu wrote: I am receiving the error Routines cannot be declared more than once, which is

CF Shopping carts

2010-06-18 Thread Eric Roberts
I am looking for a CF based shopping cart. Best option would be free.next, very cheap. We don't have a lot of money to play with. I am trying to get the exact version of CF that uplink earth is using, but so far the best answer is MX (so 6 or 7.not sure if 8 or 9 retained the MX title offhand

Re: CF Shopping carts

2010-06-18 Thread Brian Hendel
Hi there. I don't have a free or cheap solution for you, but I have developed my own custom CF cart solution powering some high sales site, and I have a dedicated CF server on which I host my solutions. If you are interesting in chatting, feel free to drop me a line! I typically handle the

RE: CF Shopping carts

2010-06-18 Thread Eric Roberts
My client is looking to host locally, so it has to be something we can install ourselves. Thanks! Eric -Original Message- From: Brian Hendel [mailto:sp...@splicedigital.com] Sent: Friday, June 18, 2010 9:28 PM To: cf-talk Subject: Re: CF Shopping carts Hi there. I don't have a free