Re: Calling a Custom Tag Twice Duplicates Query Results?

2014-06-14 Thread Steve 'Cutter' Blades
Definitely depends on the content of the custom tag itself. The first thing I notice is that none of the variables are scoped (not even the query name), and that could just be all kinds of fun. First thing I would do is, inside of that tag code, dump the attributes.NetID value. Each run

Re: Calling a Custom Tag Twice Duplicates Query Results?

2014-05-30 Thread Scott Brady
On Wed, May 28, 2014 at 1:57 PM, Phillip Vector vec...@mostdeadlygame.com wrote: Also, it's either MX or 7. :) No, Dan was right. Version 7 was ColdFusion MX 7. Which is just kind of a weird way to number it. -- - Scott Brady

Re: Calling a Custom Tag Twice Duplicates Query Results?

2014-05-30 Thread Carl Von Stetten
Yup, MX was attached to the version numbers of both ColdFusion releases that Macromedia was responsible for. Adobe dropped the MX when they released ColdFusion 8. On 5/30/2014 8:19 AM, Scott Brady wrote: On Wed, May 28, 2014 at 1:57 PM, Phillip Vector vec...@mostdeadlygame.com wrote: Also,

Re: Dynamic Query Name in Custom Tag?

2014-05-28 Thread Jack Traynor
Quackenbush wrote: Trycfdump var=#variables[ 'ConvertedFields_' attributes.QueryName ]# On Tue, May 27, 2014 at 4:49 PM, Dan LeGated...@legeek.com wrote: Hi all, I'm attempting to create a dynamic query name inside a Custom Tag. It seems to get created fine, but referencing it seems

Re: Dynamic Query Name in Custom Tag?

2014-05-28 Thread Jack Traynor
]# On Tue, May 27, 2014 at 4:49 PM, Dan LeGated...@legeek.com wrote: Hi all, I'm attempting to create a dynamic query name inside a Custom Tag. It seems to get created fine, but referencing it seems to be the problem. Here's where I set it up: cfquery name=ConvertedFields_

Calling a Custom Tag Twice Duplicates Query Results?

2014-05-28 Thread Dan LeGate
Okay, so I've been trying to solve a problem I'm having with a Custom Tag I wrote to do ldap lookups. The QueryName attribute gets passed in, along with a FilterValue. My problem is that when I call this tag twice or more within one page, the results of the FIRST lookup seem to stick

Re: Calling a Custom Tag Twice Duplicates Query Results?

2014-05-28 Thread Phillip Vector
trying to solve a problem I'm having with a Custom Tag I wrote to do ldap lookups. The QueryName attribute gets passed in, along with a FilterValue. My problem is that when I call this tag twice or more within one page, the results of the FIRST lookup seem to stick and the second lookup

Dynamic Query Name in Custom Tag?

2014-05-27 Thread Dan LeGate
Hi all, I'm attempting to create a dynamic query name inside a Custom Tag. It seems to get created fine, but referencing it seems to be the problem. Here's where I set it up: cfquery name=ConvertedFields_#attributes.QueryName# dbtype=query So, yes, it's a Query of Query, if that makes

Re: Dynamic Query Name in Custom Tag?

2014-05-27 Thread Matt Quackenbush
Try cfdump var=#variables[ 'ConvertedFields_' attributes.QueryName ]# On Tue, May 27, 2014 at 4:49 PM, Dan LeGate d...@legeek.com wrote: Hi all, I'm attempting to create a dynamic query name inside a Custom Tag. It seems to get created fine, but referencing it seems to be the problem

Re: Dynamic Query Name in Custom Tag?

2014-05-27 Thread Claude Schnéegans
I'm attempting to create a dynamic query name inside a Custom Tag. If you create anything in the scope variables, from inside a custom tag, it will be created in the custom tag scope only. You must use the caller scope, ie: cfquery name=caller.ConvertedFields_#attributes.QueryName# dbtype

Re: Dynamic Query Name in Custom Tag?

2014-05-27 Thread Claude Schnéegans
Sorry, I was too fast reading your message. If you cfdump var=ConvertedFields_#attributes.QueryName#, I suppose the CFDUMP is still inside the custom tag, so the query should be defined. But if it says Variable CONVERTEDFIELDS_ is undefined it looks like attributes.QueryName is empty. Are you

Re: Dynamic Query Name in Custom Tag?

2014-05-27 Thread Dan LeGate
var=#variables[ 'ConvertedFields_' attributes.QueryName ]# On Tue, May 27, 2014 at 4:49 PM, Dan LeGated...@legeek.com wrote: Hi all, I'm attempting to create a dynamic query name inside a Custom Tag. It seems to get created fine, but referencing it seems to be the problem. Here's where

Custom Tag, Caller Scope + Application.cfc

2011-07-28 Thread Adrian Wagner
use onRequestStart. No big deal But there is one issue that comes up through that. In application.cfm, they have query the DB for some data regarding site-wide advertising. Just standard cfquery stuff. Then on the pages, they use a custom tag to actually display the ads. Now, as soon as I move

Re: Custom Tag, Caller Scope + Application.cfc

2011-07-28 Thread Steve 'Cutter' Blades
In your Application.cfc, place your query in a persistent scope (which depends upon context). Change the custom tag to take the query in as an attribute. Change the custom tag calls to include the attribute, passing in the persistent scope var. Or, if you really can't change the custom tag

custom tag and javascript question

2010-12-31 Thread Eric Roberts
I have been running into an issue with not being able to read across forms on a site I am working on. The site is set up so that instead of using cfinclude, they address pages as custom tags (ie header.cfm is called as cf_header url_val=xx. The basic setup is there is an index.cfm that acts

Re: custom tag and javascript question

2010-12-31 Thread Michael Grant
How your cf is set up does little to effect how the javascript will communicate with other forms. JS will traverse your page in the usual way. The fact that one form is in a different file than another form doesn't matter to JS since by the time it gets to the client browser it's all one page as

Re: custom tag and javascript question

2010-12-31 Thread Russ Michaels
CF simply outputs any content in the file, it does not automatically make any decisions about what to display unless you have defined this with if/else block or switch/case statements or are dynamically generating the content. The other thing that could stop content being displayed is a cfsetting

RE: custom tag and javascript question

2010-12-31 Thread Eric Roberts
[mailto:mgr...@modus.bz] Sent: Friday, December 31, 2010 12:49 To: cf-talk Subject: Re: custom tag and javascript question How your cf is set up does little to effect how the javascript will communicate with other forms. JS will traverse your page in the usual way. The fact that one form

Re: custom tag and javascript question

2010-12-31 Thread Michael Grant
[mailto:mgr...@modus.bz] Sent: Friday, December 31, 2010 12:49 To: cf-talk Subject: Re: custom tag and javascript question How your cf is set up does little to effect how the javascript will communicate with other forms. JS will traverse your page in the usual way. The fact that one form

RE: custom tag and javascript question

2010-12-31 Thread Eric Roberts
Grant [mailto:mgr...@modus.bz] Sent: Friday, December 31, 2010 14:20 To: cf-talk Subject: Re: custom tag and javascript question Maybe I'm not following along here. How can the JS assign a value to a hidden form field if CF isn't rendering the hidden form field onto the page? Is this hidden

Custom tag paths on shared hosting - shared globally?

2010-05-21 Thread Dave Burns
support and the end result was them saying that custom tag paths are shared amongst all people on the same machine and that my custom tag had the same name as another user's on the same machine and that was the problem. I would need to change the name of my custom tag to resolve the conflict. Why

RE: null500 on nested custom tag

2010-03-12 Thread wabba
Subject: Re: null500 on nested custom tag You should try a variable called lolcat. :) Seriously though, it sounds like an endless loop to me. If you check your server's coldfusion-out log you will probably see an out of memory exception. Put in some external logging to a text file or something

using name of query in QofQ form custom tag

2010-03-12 Thread Tony Bentley
Okay here is what I am trying to do: tag:customtag query=testquery customtag: cfquery dbtype=query name=#attributes.query# select * from #attributes.query# /cfquery Obviously the name=#attributes.query# does not work. Any ideas?

Re: using name of query in QofQ form custom tag

2010-03-12 Thread G Allen R Souliere
Is it possible that you need to use: name=#Evaluate(attributes.query)# Allen On 12-Mar-10, at 12:19 PM, Tony Bentley wrote: Okay here is what I am trying to do: tag:customtag query=testquery customtag: cfquery dbtype=query name=#attributes.query# select * from #attributes.query#

Re: using name of query in QofQ form custom tag

2010-03-12 Thread Barney Boisvert
You need to do this: cfset myQuery = caller[attributes.query] / cfquery dbtype=query name=caller.#attributes.query# select * from myQuery /cfquery The first line pulls the query object from the caller scope down into the current variables scope where the QofQ can successfully dereference it.

Re: using name of query in QofQ form custom tag

2010-03-12 Thread Tony Bentley
Nice Barney! I didn't even think about using caller. Thanks! ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

null500 on nested custom tag

2010-03-11 Thread Me Too
This is driving me nuts. Pretty simple, I have a little custom tag that runs through a pivot table trying to reach the bottom (categoryID=0) of a category tree by way of active (bActive=1) categories. The logic is: It starts by assuming that the tree is bad (goodcat=0). If it finds a level

Re: null500 on nested custom tag

2010-03-11 Thread Brad Wood
returns no records, won't the line cfif nParentCatID LT 1 error trying to convert to a number? ~Brad - Original Message - From: Me Too must...@wabba.net To: cf-talk cf-talk@houseoffusion.com Sent: Thursday, March 11, 2010 10:31 PM Subject: null500 on nested custom tag

Re: Stack overflow in self nested custom tag

2010-03-09 Thread Dave Watts
I'm using CF7.02 and I'm trying to create a custom tag that will be self nested, like:-     cf_ct1          cf_ct2               cf_ct2               /cf_ct2          /cf_ct2     /cf_ct1 And in cf_ct2, I'm trying to get the data of the parent tag and assigning to a variable

Re: Stack overflow in self nested custom tag

2010-03-09 Thread Chris Velevitch
On Wed, Mar 10, 2010 at 02:31, Dave Watts dwa...@figleaf.com wrote: Instead of having the processing done in the child tags, you can simply pass the data from those tags back to the parent tag during its end execution mode, using the CFASSOCIATE tag. This will let you do things that are a bit

Re: Stack overflow in self nested custom tag

2010-03-09 Thread Dave Watts
Doesn't that depend on what you're trying to achieved? I can image that's a good solution for simple nesting of tags, but not for highly complex nesting of an indeterminate number of different child tags, child of child tags and recursive nesting. No, actually, I find it easier especially in

Stack overflow in self nested custom tag

2010-03-08 Thread Chris Velevitch
I'm using CF7.02 and I'm trying to create a custom tag that will be self nested, like:- cf_ct1 cf_ct2 cf_ct2 /cf_ct2 /cf_ct2 /cf_ct1 And in cf_ct2, I'm trying to get the data of the parent tag and assigning to a variable in the current

Re: Stack overflow in self nested custom tag

2010-03-08 Thread Barney Boisvert
actually tested, but that's what I'd try first. cheers, barneyb On Mon, Mar 8, 2010 at 11:12 PM, Chris Velevitch chris.velevi...@gmail.com wrote: I'm using CF7.02 and I'm trying to create a custom tag that will be self nested, like:-     cf_ct1          cf_ct2               cf_ct2

Re: Stack overflow in self nested custom tag

2010-03-08 Thread Chris Velevitch
On Tue, Mar 9, 2010 at 18:18, Barney Boisvert bboisv...@gmail.com wrote: I haven't tested this, but I'd imagine that the CURRENT tag is on the tag stack (as it is with exceptions).  Since getBaseTagData operates on names rather than offsets/indexes, it's going to match the current tag, and

Re: CFDIVs within custom tag problem

2010-03-03 Thread Tony Bentley
Are you using the following condition?: cfif thisTag.executionMode is 'start' !---Insert code here--- /cfif cfif thisTag.executionMode is 'end'/cfif If you do not include the thisTag.executionMode condition, it is going to fire twice. How about showing some cleaned up code?

CFDIVs within custom tag problem

2010-03-02 Thread Terry Ford
/scripts/ajax/resources/cf/images/loading.gif'/; The above appears THREE times, and the browser loads it 3 times. This is clearly unnecessary. When I simply use the commentform code in a cfinclude this does not happen -- it's only when I use the cfdiv/cfform within a custom tag. Does anyone

cfLib - Validate Emails Webservice Custom Tag

2010-02-16 Thread Casey Dougall
Hello, Looking for additional ways to verify email addresses. We continue to get emails that pass normal validation but then when you go to send they fail for one reason or another. I saw this CustomTag over on cfLib and was wondering if anyone is using it regularly.

Re: cfLib - Validate Emails Webservice Custom Tag

2010-02-16 Thread Jochem van Dieten
On Tue, Feb 16, 2010 at 2:59 PM, Casey Dougall wrote: Looking for additional ways to verify email addresses. We continue to get emails that pass normal validation but then when you go to send they fail for one reason or another. What do you consider normal validation? isValid(email, ...) ?

Re: cfLib - Validate Emails Webservice Custom Tag

2010-02-16 Thread Judah McAuley
Best-practice configuration of SMTP servers turns off responses to inquiries about the existence of mail users for the excellent reason that spammers use that to develop higher-quality lists of known good addresses. Of course *you* wouldn't do anything bad with a mail server that answered your

Custom Tag (etc.) libraries online?

2010-01-08 Thread Marie Taylore
Hey all, what are some of the best or latest and greatest custom tag / function / cfc sites available out there? All the old links I have (haven't search for any in a while) look like they're pretty out of date and Adobe's developer exchange is just dismal - has tags there that don't even

Re: Custom Tag (etc.) libraries online?

2010-01-08 Thread John M Bliss
http://riaforge.org http://cflib.org On Fri, Jan 8, 2010 at 5:03 PM, Marie Taylore mt4yl...@yahoo.com wrote: Hey all, what are some of the best or latest and greatest custom tag / function / cfc sites available out there? All the old links I have (haven't search for any in a while) look

Re: Custom Tag (etc.) libraries online?

2010-01-08 Thread Mike Chabot
is a jQuery grid. Good luck, Mike Chabot On Fri, Jan 8, 2010 at 6:08 PM, John M Bliss bliss.j...@gmail.com wrote: http://riaforge.org http://cflib.org On Fri, Jan 8, 2010 at 5:03 PM, Marie Taylore mt4yl...@yahoo.com wrote: Hey all, what are some of the best or latest and greatest custom tag

Re: Custom Tag (etc.) libraries online?

2010-01-08 Thread Gerald Guido
wrote: Hey all, what are some of the best or latest and greatest custom tag / function / cfc sites available out there? All the old links I have (haven't search for any in a while) look like they're pretty out of date and Adobe's developer exchange is just dismal - has tags there that don't

Re: custom tag content displaying twice

2009-11-05 Thread Vinh Khoa Nguyen
I'm not sure why it does that but there is an easy way to avoid it. That is not to close the tag properly in XHTML style, just use instead of /: This will give you double output: cf_mytag / This will give you single output (more expected result) cf_mytag I think that is because the first

cfmail custom tag

2009-11-04 Thread Michael Muller
Hey all I'm trying to make a custom tag for cfmail so I can create a standard From, Subject, and HTML layout inside the email that is sent. I have created the tag and am using the open / close method, but the content of the email winds up being displayed on the page, as well as being emailed

Re: custom tag content displaying twice

2009-11-04 Thread Mik Muller
Hmm having never made a custom tag with an open and close pair, I didn't realize that the contained content will display twice. http://www.mail-archive.com/cf-talk@houseoffusion.com/msg29687.html No way around this? It seems pretty stupid that CF wouldn't suppress the initial output

Re: custom tag content displaying twice

2009-11-04 Thread Barney Boisvert
default choice. cheers, barneyb On Wed, Nov 4, 2009 at 12:16 PM, Mik Muller ad...@montaguema.net wrote: Hmm having never made a custom tag with an open and close pair, I didn't realize that the contained content will display twice. http://www.mail-archive.com/cf-talk@houseoffusion.com

Re: custom tag content displaying twice

2009-11-04 Thread Bryan Stevenson
There is a way to suppress that and I can't recall how (been a long time). I see in my head something to do with... cfif THIS.tagStart and cfif THIS.tagEnd HTH...at least you know it is possiblenow go forth and Google ;-) Cheers - Bryan Stevenson B.Comm. VP Director of E-Commerce

Re: custom tag content displaying twice

2009-11-04 Thread Mik Muller
Barney, Well, as I said, in this case the prinicple of least surprise would have effused a behavior wherein the page calling the custom tag would not have rendered the content, leaving that responsibility to the tag itself. In _my_ mind, anyway. I mean, if the tag is supposed to receive

Re: cfmail custom tag

2009-11-04 Thread Brad Roberts
Roberts AgentBlaze, LLC Office: (865) 681-8390 Fax: (866) 583-9334 b...@agentblaze.com http://www.agentblaze.com On Wed, Nov 4, 2009 at 1:25 PM, Michael Muller mich...@mullertech.comwrote: Hey all I'm trying to make a custom tag for cfmail so I can create a standard From, Subject, and HTML

Re: custom tag content displaying twice

2009-11-04 Thread Barney Boisvert
The custom tag isn't rendering the content again, YOU are rendering the content again. If you create an empty custom tag and invoke it, you'll get a single copy of the output. If you then add emitting of the generated content in the custom tag, you'll get two copies. So building up from

Re: Getting UDF's into a custom tag.

2009-09-03 Thread Dominic Watson
For me it kinda depends on the scope of the custom tag. Is it something you would potentially use in other, non related applications? If so, I'd want it not to need to use those functions at all if possible or, if not, the tag could contain the udf so that it was entirely independent. If app

Re: Getting UDF's into a custom tag.

2009-09-03 Thread Gerald Guido
is and what the custom tag is doing though, perhaps there is a more sensible approach that bypasses the dilemma alltogether. It is just a collection of utility func's for misc chores like creating SES urls, creating zebra stripes etc. Like I said, I am not sure if I want to put them in a CFC

Re: Getting UDF's into a custom tag.

2009-09-03 Thread Dominic Watson
the 'helpers' object in the variables struct that you pass. In this example I almost certainly would not put the UDFs in the custom tag as your tag is really a framework type thing and not a standalone tag to be plugged in any place. Putting all the udfs into a component can have the benefit of being app

Re: Getting UDF's into a custom tag.

2009-09-03 Thread Gerald Guido
OR have the 'helpers' object in the variables struct that you pass Perfect. Thank you sir! G! -- Gerald Guido http://www.myinternetisbroken.com To invent, you need a good imagination and a pile of junk. -- Thomas A. Edison

Re: Getting UDF's into a custom tag.

2009-09-03 Thread Gerald Guido
And thank you Agha... You suggested that at the beginning. I just needed to think it out and get it straight in my head. Again, thanx all that helped. G! On Thu, Sep 3, 2009 at 9:55 AM, Gerald Guido gerald.gu...@gmail.com wrote: OR have the 'helpers' object in the variables struct that you

Getting UDF's into a custom tag.

2009-09-02 Thread Gerald Guido
I have a custom tag to display my views, basically an encapsulated cfinclude, and I have a cfm that holds a set of common utility functions (I am debating whether or not to put them into a CFC). What would be the best way(s) to make the UDF's available in side the custom tags? Put them

Re: Getting UDF's into a custom tag.

2009-09-02 Thread Agha Mehdi
Ideal is to put them in a cfc and pass the object in Agha On Sep 2, 2009, at 2:20 PM, Gerald Guido gerald.gu...@gmail.com wrote: I have a custom tag to display my views, basically an encapsulated cfinclude, and I have a cfm that holds a set of common utility functions (I am debating

Re: Getting UDF's into a custom tag.

2009-09-02 Thread Rick Root
On Wed, Sep 2, 2009 at 5:20 PM, Gerald Guidogerald.gu...@gmail.com wrote: I have a custom tag to display my views, basically an encapsulated cfinclude, and I have a cfm that holds a set of common utility functions (I am debating whether or not to put them into a CFC). What would be the best

Re: Getting UDF's into a custom tag.

2009-09-02 Thread Gerald Guido
within the custom tag, so the request scope is probably the safest and easiest. cfset request.functionName = functionName -- Rick Root CFFM - Open Source Coldfusion File Manager http://www.opensourcecf.com/cffm -- Gerald Guido http://www.myinternetisbroken.com To invent, you need a good

Re: Getting UDF's into a custom tag.

2009-09-02 Thread Agha Mehdi
) on initialization. That way they're always there in memory. I don't like the idea of passing functions into a custom tag though it would certainly follow the rules of encapsulation a bit more, either way seems like a violation to me, really. But then, I don't think I've used a custom tag

Re: Getting UDF's into a custom tag.

2009-09-02 Thread Rick Root
To be honest, I tend to put utility functions into a component called udf.cfc and then load that component into a shared scope (application or server) on initialization. That way they're always there in memory. I don't like the idea of passing functions into a custom tag though it would

Default Custom Tag Path

2009-06-24 Thread Dawson, Michael
When I installed CF8, the installer added C:\ColdFusion8\CustomTags in the custom tag path list. There is nothing in the directory except a generic tag that does nothing. Is it safe to remove this custom tag path? Michael Dawson Manager of Web Applications Office of Technology Services

RE: Default Custom Tag Path

2009-06-24 Thread brad
You'll probably want to go into the ColdFusion Administrator and remote the custom tag path for it under Extensions Custom Tag Paths, but I don't believe that folder is necessary for server harmony and world peace. ~Brad Original Message Subject: Default Custom Tag Path From

RE: Default Custom Tag Path

2009-06-24 Thread Dawson, Michael
Thanks, Brad. I took it out and everything still seems to be working. :-) Thanks, Mike -Original Message- From: b...@bradwood.com [mailto:b...@bradwood.com] Sent: Wednesday, June 24, 2009 12:28 PM To: cf-talk Subject: RE: Default Custom Tag Path You'll probably want to go

RE: Default Custom Tag Path

2009-06-24 Thread Paul Alkema
would mention it just in case. :) Best Regards, Paul Alkema AlkemaDesigns.com -Original Message- From: Dawson, Michael [mailto:m...@evansville.edu] Sent: Wednesday, June 24, 2009 10:55 AM To: cf-talk Subject: Default Custom Tag Path When I installed CF8, the installer added C:\ColdFusion8

RE: Default Custom Tag Path

2009-06-24 Thread Dawson, Michael
- From: Paul Alkema [mailto:paulalkemadesi...@gmail.com] Sent: Wednesday, June 24, 2009 12:53 PM To: cf-talk Subject: RE: Default Custom Tag Path Hey Michael, As was stated in previous emails, this shouldn't be a problem. I don't know the budget or the size of your company/website, but my company

Re: PayPal Custom Tag

2009-05-26 Thread Torrent Girl
Yes I do. @torrent girlDo you still need it? -- Ryan ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: PayPal Custom Tag

2009-05-26 Thread Torrent Girl
Yes please send or post. ~| 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/messageid:322815

Re: PayPal Custom Tag

2009-05-22 Thread Ryan LeTulle
I've got sample code Ryan P LeTulle On May 21, 2009, at 8:09 PM, Torrent Girl torrentg...@gmail.com wrote: That's ok thanks :) I looked and they never posted anything. Sorry about that. Slowly walks away tail tucked. G! On Thu, May 21, 2009 at 8:51 PM, Gerald Guido

Re: PayPal Custom Tag

2009-05-22 Thread Ryan Letulle
@torrent girlDo you still need it? -- Ryan On Fri, May 22, 2009 at 8:00 AM, Ryan LeTulle bayous...@gmail.com wrote: I've got sample code Ryan P LeTulle On May 21, 2009, at 8:09 PM, Torrent Girl torrentg...@gmail.com wrote: That's ok thanks :) I looked and they never posted

PayPal Custom Tag

2009-05-21 Thread Torrent Girl
Hello all I searched HOF for postings related to PayPal Custom Tag and each listing has broken links. Does anyone have a simple PayPal Custom Tag that can be used to accept paypal payments without having the user go to the paypal site? Thnx

Re: PayPal Custom Tag

2009-05-21 Thread Gerald Guido
http://paypalcfc.riaforge.org/ On Thu, May 21, 2009 at 8:34 PM, Torrent Girl torrentg...@gmail.com wrote: Hello all I searched HOF for postings related to PayPal Custom Tag and each listing has broken links. Does anyone have a simple PayPal Custom Tag that can be used to accept paypal

Re: PayPal Custom Tag

2009-05-21 Thread Torrent Girl
Thanks! http://paypalcfc.riaforge.org/ On Thu, May 21, 2009 at 8:34 PM, Torrent Girl torrentg...@gmail.com wrote: ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion

Re: PayPal Custom Tag

2009-05-21 Thread Gerald Guido
I searched HOF for postings related to PayPal Custom Tag and each listing has broken links. Does anyone have a simple PayPal Custom Tag that can be used to accept paypal payments without having the user go to the paypal site? Thnx

Re: PayPal Custom Tag

2009-05-21 Thread Gerald Guido
Sorry bout the goose chase. I just remember seeing it on RIAforge. I never actually checked it out. I would look for something related to paypal.cfc I googled it and from what I can tell paypal.cfc looks like something the Paypal provides Here is a link that found that might help out

Re: PayPal Custom Tag

2009-05-21 Thread Torrent Girl
That's ok thanks :) I looked and they never posted anything. Sorry about that. Slowly walks away tail tucked. G! On Thu, May 21, 2009 at 8:51 PM, Gerald Guido gerald.gu...@gmail.comwrote: ~| Want to reach the ColdFusion

Re: Per-application custom tag paths ( Application.cfc )

2009-04-07 Thread Peter Boughton
Definitely seems to be plural (which makes sense; it's a list of multiple paths). To give another working example, I've ripped the top six lines from the Application.cfc for a Railo app I'm writing: cfcomponent output=false cfset This.Name = {application_name} / cfset

Re: Per-application custom tag paths ( Application.cfc )

2009-04-07 Thread David McGuigan
Thanks Ben and Peter. Yeah, I've got it in the pseudo constructor. I'll play around with the snippets and see if anything gives. On Tue, Apr 7, 2009 at 2:17 AM, Peter Boughton bought...@gmail.com wrote: Definitely seems to be plural (which makes sense; it's a list of multiple paths). To

Per-application custom tag paths ( Application.cfc )

2009-04-06 Thread David McGuigan
Ben Forta was like, Yo, this.customtagpaths / listAppend( this.customtagpaths, newPath ). http://www.forta.com/blog/index.cfm/2007/4/24 But then the Adobe documentation's all like, this.customtagpath ( singular ) http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=AppEvents_01.html

Re: Per-application custom tag paths ( Application.cfc )

2009-04-06 Thread Ben Nadel
This is how I does it (in Application.CFC): !--- Store the root path to application. --- cfset THIS.RootPath = GetDirectoryFromPath( GetCurrentTemplatePath() ) / !--- Build up an array of custom tag paths. --- cfset THIS.CustomTagPathsArray = [ (THIS.RootPath tags

Custom Tag Paths

2008-09-16 Thread Adam Haskell
We are load testing one of our internal apps and seeing some odd errors. We defined a cutomtag path in the Application.cfc with 100,000 requests in just under an hour (these request call different pages but 80% use the custom tag, it's a portlet) we see 1-1.5% returning a customtag not found error

Re: Custom Tag Paths

2008-09-16 Thread s. isaac dealey
Hey Adam, You probably have a good handle on what's going on in your environment... certainly better than I do, given that I'm only hearing about it second hand. I just thought I'd throw out that I was a bit confused when I first discovered that CF will throw a template not found error if you

Looking for UDF or Custom Tag

2008-04-16 Thread Bruce Sorge
Good day all, I am looking for a UDF or CFC that allows me to do the following: Populates a select list from a query When an item in the list is selected, fills in some text fields automatically. I am writing a help desk application, and when the user gets to the part where they select the

Re: Looking for UDF or Custom Tag

2008-04-16 Thread Charlie Griefer
unless you go an AJAX route that's pretty much just straightforward client side JS. create a JS array from the query, and call a function onchange() on the select that populates the text fields. really wouldn't be a UDF or a CFC as it's all client side behavior. On Wed, Apr 16, 2008 at 10:55

Re: Looking for UDF or Custom Tag

2008-04-16 Thread Bruce Sorge
Cool. Thanks. Charlie Griefer wrote: unless you go an AJAX route that's pretty much just straightforward client side JS. create a JS array from the query, and call a function onchange() on the select that populates the text fields. really wouldn't be a UDF or a CFC as it's all client side

RE: CF 4.5 Custom Tag directory on Solaris.

2008-03-31 Thread Dave Watts
Anybody care to recall where the custom tag directory might reside on a Solaris installation of ColdFusion 4.5? I'm guessing /opt/coldfusion/customtags. But you can find this in the Registry (!) using the Registry Editor (!!). CF 4.5 on Solaris uses an emulation layer to support the Windows

CF 4.5 Custom Tag directory on Solaris.

2008-03-28 Thread Ian Skinner
Anybody care to recall where the custom tag directory might reside on a Solaris installation of ColdFusion 4.5? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http

Variable expansion within custom tag body

2008-02-14 Thread Jim McAtee
Is variable expansion supposed to take place in the generated output of a CFML tag, or does it always require cfoutput tags? cf_mytag attr1=17 attr2=#variables.x# Generated output on #dateFormat(now(), mmm d, )# /cf_mytag

Re: Variable expansion within custom tag body

2008-02-14 Thread AJ Mercer
In some tags they do - like cfmail, but not others like cfsavecontent - cfoutput required I don't think they will for custom tags On Fri, Feb 15, 2008 at 12:46 PM, Jim McAtee [EMAIL PROTECTED] wrote: Is variable expansion supposed to take place in the generated output of a CFML tag, or does

Re: CFC, Custom tag, or something for tedious SQL Queries?

2008-01-11 Thread Nicholas Stein
Since I am also a C# programmer, I wrote some templates in CodeSmith. I would be happy to share. They might be a good starting point for you. Here are the templates I have so far. 1. StoredProcedures.cst - Look at a MSSqlServer table and generate CRUD stored procs. 2.

Re: CFC, Custom tag, or something for tedious SQL Queries?

2008-01-10 Thread Tom Chiverton
On Wednesday 09 Jan 2008, George Linderman wrote: want to INSERT or UPDATE is a large source of pain for me. Do you know of any faster way of doing this? Perhaps with a CFC or something else? Or As well as an ORM like Reactor, you might investigate a code generator like Illudium that can also

Re: CFC, Custom tag, or something for tedious SQL Queries?

2008-01-10 Thread Steve Bryant
George, I wrote DataMgr for just this sort of thing. http://www.bryantwebconsulting.com/cfcs/ http://datamgr.riaforge.org/ If you are using OO, then an ORM would be the way to go. Transfer, Reactor, and objectBreeze. I wrote some brief thoughts on different approaches here:

CFC, Custom tag, or something for tedious SQL Queries?

2008-01-09 Thread George Linderman
Hey guys, We all do them all the time, just good old basic SQL queries. INSERT, UPDATE etc. However, many times the forms I develop are insanely long...so writing down all of the field names, and then their values every time I want to INSERT or UPDATE is a large source of pain for me. Do you

Re: CFC, Custom tag, or something for tedious SQL Queries?

2008-01-09 Thread Todd
Break up the form into forms? On Jan 9, 2008 11:56 AM, George Linderman wrote: Hey guys, We all do them all the time, just good old basic SQL queries. INSERT, UPDATE etc. However, many times the forms I develop are insanely long...so writing down all of the field names, and then their

Re: CFC, Custom tag, or something for tedious SQL Queries?

2008-01-09 Thread Brian Kotek
Use an ORM. On Jan 9, 2008 11:56 AM, George Linderman [EMAIL PROTECTED] wrote: Hey guys, We all do them all the time, just good old basic SQL queries. INSERT, UPDATE etc. However, many times the forms I develop are insanely long...so writing down all of the field names, and then their

RE: CFC, Custom tag, or something for tedious SQL Queries?

2008-01-09 Thread Jerry Guido
that you have received this transmittal in error; any review, dissemination, distribution or copying of this transmittal is strictly prohibited. -Original Message- From: Todd [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 09, 2008 12:13 PM To: CF-Talk Subject: Re: CFC, Custom tag

Re: CFC, Custom tag, or something for tedious SQL Queries?

2008-01-09 Thread Marco Antonio C. Santos
: Wednesday, January 09, 2008 12:13 PM To: CF-Talk Subject: Re: CFC, Custom tag, or something for tedious SQL Queries? Break up the form into forms? On Jan 9, 2008 11:56 AM, George Linderman wrote: Hey guys, We all do them all the time, just good old basic SQL queries. INSERT, UPDATE

Re: CFC, Custom tag, or something for tedious SQL Queries?

2008-01-09 Thread Dominic Watson
Use an ORM ORM = Object-Relational Modeler/Modeling Examples: * Reactor: http://www.alagad.com/go/products-and-projects/reactor-for-coldfusion/reactor-for-coldfusion * Transfer: http://compoundtheory.com/?action=transfer.index In a nutshell, these work by automatically generating components

Re: CFC, Custom tag, or something for tedious SQL Queries?

2008-01-09 Thread Brian Kotek
Object-Relational Mapping, actually. Transfer seems to have the most traction nowadays. On Jan 9, 2008 1:17 PM, Dominic Watson [EMAIL PROTECTED] wrote: Use an ORM ORM = Object-Relational Modeler/Modeling Examples: * Reactor:

  1   2   3   4   5   6   7   8   9   10   >