Re: conditional cfchartseries

2008-10-29 Thread Azadi Saryev
look up iif() cf function.

the syntax will be something like:
seriesColor = "#iif(myquery.count gt 5, de('red'), de(blue'))#"

hth

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/



Sebastian Powell wrote:
> Hi,
>
> I am trying to conditionally color a single bar chart series in , 
> depending on a value returned from a source query.  As an example of 
> logically what i am trying to achieve :
>
> type="bar"
>query="myQuery"
>valueColumn ="count"
>itemColumn = "region"
>paintstyle = "plain"
>  
>
>  seriesColor = "red"
>
>   seriesColor="blue"
> />
>
> Thanks
>
> Bas
>
>   

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314591
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF and SharePoint

2008-10-29 Thread Mike Chabot
Victor,
By "Verity" do you mean the search engine technology that comes
bundled with ColdFusion? If that is what you mean then I think your
question is confusing because SharePoint has an entirely different
purpose so it doesn't make sense to convert from one technology to the
other. Are you looking for a way to search for documents located in a
SharePoint system and link to the documents from a ColdFusion Web
application?

-Mike Chabot

On Wed, Oct 29, 2008 at 6:30 PM, Victor Moore <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have a customer who wants to move to SharePoint from Verity. The question
> I have is this:
> Can I access the documents index by SharePoint from CF?
>
> Basically I'm looking for anything that will help me integrate the two. And
> yes their decision to go with SharePoint is final.
> Apparently one of their execs was at a Microsoft event and believes that
> SharePoint is the future...
>
> Thanks
> Victor

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314590
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


conditional cfchartseries

2008-10-29 Thread Sebastian Powell
Hi,

I am trying to conditionally color a single bar chart series in , 
depending on a value returned from a source query.  As an example of logically 
what i am trying to achieve :


 seriesColor = "red"
   
  seriesColor="blue"
   

Thanks

Bas



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314589
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread Gerald Guido
>>You do know this is a 0.002 release right?

Ha! Kinda like life itself?

On Wed, Oct 29, 2008 at 9:24 PM, s. isaac dealey <[EMAIL PROTECTED]> wrote:

> > Thanks.. :) I was actually looking at all 3 to see which I can edit best
> > (I have some custom code I would need to put in), but if I had to choose
> > 1, I would probably pick FuseForum to run as it seems the most fusebox
> > accessible. :)
> >
> > Thank you again. :)
>
> Welcome... :) You do know this is a 0.002 release right? My only concern
> would be that some of the features may not have been completed or may
> still be a bit "raw". However, as I'd be giving you a script to convert
> it rather than converting it manually, you should be able to run that
> same script against future versions as needed. :)
>
>
> --
> s. isaac dealey  ^  new epoch
>  isn't it time for a change?
> ph: 781.769.0723
>
> http://onTap.riaforge.org/blog
>
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314588
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfreturn "2" query values from CFC?

2008-10-29 Thread Rick Faircloth
Thanks, Charlie... makes sense.

I guess I could also just run two functions within each cfcase, as well...

Rick


Charlie Griefer wrote:
> put 'em in a struct and return the struct.
> 
> 
> 
>
>  
>
>  
>
> 
> 
>
> 
>
>
> On Wed, Oct 29, 2008 at 6:29 PM, Rick Faircloth <[EMAIL PROTECTED]>wrote:
>
>   
>> Hi, all...
>>
>> If I'm running two queries inside a function,
>> how do I return both query values?
>>
>> Query 1:   get_properties
>> Query 2:   get_all_photos
>>
>> 
>> 
>>
>> Can there be two cfreturn's?
>>
>> or, perhaps, 
>>
>> ???
>>
>> Rick
>>
>>
>> 
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314587
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfreturn "2" query values from CFC?

2008-10-29 Thread Charlie Griefer
put 'em in a struct and return the struct.














On Wed, Oct 29, 2008 at 6:29 PM, Rick Faircloth <[EMAIL PROTECTED]>wrote:

> Hi, all...
>
> If I'm running two queries inside a function,
> how do I return both query values?
>
> Query 1:   get_properties
> Query 2:   get_all_photos
>
> 
> 
>
> Can there be two cfreturn's?
>
> or, perhaps, 
>
> ???
>
> Rick
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314586
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread s. isaac dealey
> Thanks.. :) I was actually looking at all 3 to see which I can edit best 
> (I have some custom code I would need to put in), but if I had to choose 
> 1, I would probably pick FuseForum to run as it seems the most fusebox 
> accessible. :)
> 
> Thank you again. :)

Actually it says in the readme that they're still no login in this
version of FuseForum. 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314585
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfreturn "2" query values from CFC?

2008-10-29 Thread Rick Faircloth
Hi, all...

If I'm running two queries inside a function,
how do I return both query values?

Query 1:   get_properties
Query 2:   get_all_photos




Can there be two cfreturn's?

or, perhaps, 

???

Rick

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314584
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread s. isaac dealey
> Thanks.. :) I was actually looking at all 3 to see which I can edit best 
> (I have some custom code I would need to put in), but if I had to choose 
> 1, I would probably pick FuseForum to run as it seems the most fusebox 
> accessible. :)
> 
> Thank you again. :)

Welcome... :) You do know this is a 0.002 release right? My only concern
would be that some of the features may not have been completed or may
still be a bit "raw". However, as I'd be giving you a script to convert
it rather than converting it manually, you should be able to run that
same script against future versions as needed. :) 


-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314583
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF and SharePoint

2008-10-29 Thread Victor Moore
Hi,

I have a customer who wants to move to SharePoint from Verity. The question
I have is this:
Can I access the documents index by SharePoint from CF?

Basically I'm looking for anything that will help me integrate the two. And
yes their decision to go with SharePoint is final.
Apparently one of their execs was at a Microsoft event and believes that
SharePoint is the future...

Thanks
Victor


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314582
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread Phillip M. Vector
Thanks.. :) I was actually looking at all 3 to see which I can edit best 
(I have some custom code I would need to put in), but if I had to choose 
1, I would probably pick FuseForum to run as it seems the most fusebox 
accessible. :)

Thank you again. :)

s. isaac dealey wrote:
>> On a side note...
>>
>> Does anyone know of a fusebox based forum that doesn't use MVC layout? 
>> I.e. It's all in one circuit and it's basically plug and play?
> 
> 
> 
>> Anyone out there have a forum that is self contained in one circuit? I 
>> might as well also cross post this to the fusebox group just in case.
> 
> I don't... I can however give you a simple pattern for converting an FB
> app that's been written using the 3-circuit approach. 
> 
> 1) Find their controller circuit XML (I assume)
> 2) For each  find the corresponding action in
> the model circuit (mForum) 
> 3) Copy the code from the XML in that action to the controller action
> replacing the  verb. 
> 4) Copy any included files from the model directory into the controller
> directory 
> 5) Repeat steps 2-4 for the vForum view circuit 
> 
> For that matter I could probably write a script that could do this for
> you in CF. Probably wouldn't even take very long to do... If you're
> interested, throw me a URL to the forum you want and I'll see if I can
> throw one together... Probably only take me about an hour. 
> 
> hth,
> 
> ike
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314581
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread s. isaac dealey
> On a side note...
> 
> Does anyone know of a fusebox based forum that doesn't use MVC layout? 
> I.e. It's all in one circuit and it's basically plug and play?



> Anyone out there have a forum that is self contained in one circuit? I 
> might as well also cross post this to the fusebox group just in case.

I don't... I can however give you a simple pattern for converting an FB
app that's been written using the 3-circuit approach. 

1) Find their controller circuit XML (I assume)
2) For each  find the corresponding action in
the model circuit (mForum) 
3) Copy the code from the XML in that action to the controller action
replacing the  verb. 
4) Copy any included files from the model directory into the controller
directory 
5) Repeat steps 2-4 for the vForum view circuit 

For that matter I could probably write a script that could do this for
you in CF. Probably wouldn't even take very long to do... If you're
interested, throw me a URL to the forum you want and I'll see if I can
throw one together... Probably only take me about an hour. 

hth,

ike


-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314580
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread s. isaac dealey
> By comparison DataFaucet and the onTap framework encourages the reuse
> of an entire controller layer and an entire database schema from one
> application to the next. (And really you could easily swap out Steve
> Bryant's DataMgr which is much more compact instead of DataFaucet and
> get the same effect.)

Realized I neglected to link those: 

DataMgr http://datamgr.riaforge.org
DataFaucet http://www.datafaucet.com 

article about some recent FarCry-esque enhancements for DF 
http://datafaucet.riaforge.org/blog/index.cfm/2008/10/14/BestOfBothWorlds


-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 781.769.0723

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314579
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread Phillip M. Vector
On a side note...

Does anyone know of a fusebox based forum that doesn't use MVC layout? 
I.e. It's all in one circuit and it's basically plug and play?

I'm looking to upgrade the forum I have, but honestly, MVC and OO 
programing confuse me to no end (Yes, I know I should learn it. I've 
tried and can't wrap my head around it. No, I don't want links to "MVC 
for dummies" or anything like that). :)

Anyone out there have a forum that is self contained in one circuit? I 
might as well also cross post this to the fusebox group just in case.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314578
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread s. isaac dealey
> On Wednesday 29 Oct 2008, Peter Boughton wrote:
> > learning how to make wheels - for everything else you should pick an
> > existing wheel and update as necessary, rather than rolling your own.
> 
> There is another way:
> http://www.joelonsoftware.com/articles/fog07.html

Thanks for posting this Tom. 

I read this one not long ago actually... 

I suppose it's possible that some folks perceive me as having NIH
syndrome since I've built so much between DataFaucet and the onTap
framework. Although personally I feel what's in them is fairly unique
despite the overlap with other frameworks. 

And part of the objective behind the onTap framework actually for a long
time has been to allow for greater reuse of code between applications,
even above and beyond what's possible with the previous frameworks for
ColdFusion. 

You can of couse reuse code more easily between different applications
on the same framework, for example with Fusebox you can have custom
lexicons between different projects. With ColdBox and Mach-II there are
plugins and filters that can be used between different projects. Where
the onTap framework diverges from these other frameworks is that it
encourages the reuse of aspects of the application that aren't as easily
shared between apps with ColdBox, Mach-II or Fusebox. 

With these other frameworks you'll typically have a handful of tools
that you'll take from one application to the next like client-side
frameworks, an IoC framework (ColdSpring/LightWire), etc. But in each
application you'll write most if not all of the controller layer from
scratch (even if you do bring business objects from a previous project)
and often you'll build a whole new database schema. That's a lot of
duplicated effort for each new project. By comparison DataFaucet and the
onTap framework encourages the reuse of an entire controller layer and
an entire database schema from one application to the next. (And really
you could easily swap out Steve Bryant's DataMgr which is much more
compact instead of DataFaucet and get the same effect.)

Generally speaking I'm advocating the same kind of distinction Joel
Spolsky makes at the end of that blog. If its part of your core
business, write it yourself, but if it's "one off" as is usually the
case with things like forums or contact systems, there should be an
easier way to integrate someone else's existing app into your client's
project and tweak it in a way that maintains the integrity of the
original to support future upgrades. 

Some of us are doing that already with what's called "single sign on"
(SSO). It works, but it's problematic - each application (forum,
contacts, etc) has its own permissioning system, so you have to write
custom code to maintain the configuration across them. What I'm talking
about is the next step beyond SSO and that's Service Oriented
Architecture (SOA). Designing the applications so that instead of each
application duplicating the effort involved in creating its own member
management and its own permission system, they can all take advantage of
a pre-installed member management and permissioning "service". And just
as they take advantage of application security as a service, these
sub-applications can also exploit each other to create powerful
integration between applications. 

Adobe does this with their products already - for example, there's
integration for Flash and PDF both built-in to ColdFusion. But right now
that's not the case within the broader ColdFusion community. All our
apps are stand-alone and that means they all duplicate a lot of effort. 

To put it another way, why did FuseTalk and Mango Blog and BlogCFC and
Galleon all create their own member management and security APIs? Does
it make sense for every application to reinvent those things? Imagine
for a moment if these were non-networked desktop applications instead.
Imagine that it's a different kind of program like say Photoshop or GIMP
that runs on the desktop in Windows or Mac or whatever your preferred
flavor of Linux is. The job of the security framework would be to decide
what files the current user is allowed to view and edit. Would it still
make sense for each of them to spend time writing code to reinvent the
idea of a "user" and "permissions" when the operating system already has
a robust user/permission service available? 

Personally I think it makes sense for desktop applications to reuse the
features of the operating system, and similarly I think it makes sense
for CF applications to reuse each other. I'd like to see that kind of
collaborative reuse become a bigger part of ColdFusion frameworks in
general. My understanding is that SOS and COOP have similar goals along
with the onTap framework, so if you're interested in these ideas check
out the onTap framework but also check out SOS and COOP. You can find
more on them here: http://sos.riaforge.org and http://coop.riaforge.org 

There's a decent high-level view of the onTap framework goals on the
wiki he

Re: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Gerald Guido
I got em.

http://www.myinternetisbroken.com/apps/cf8demos-v2.zip



On Wed, Oct 29, 2008 at 4:01 PM, Steve Moore <[EMAIL PROTECTED]> wrote:

> Prior to his accident, Adam Lehman from Adobe had posted version 2 of his
> CF 8 demos to his website at adrocknaphobia.com. This site is now
> unavailable and I was wondering if anybody had his zip file? I'm
> specifically looking for his samples for the CF/Blaze DS chat application.
>
> Steve Moore
> [EMAIL PROTECTED]
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314576
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Loathe
Thanks. 

> -Original Message-
> From: Jason Fisher [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, October 29, 2008 4:30 PM
> To: cf-talk
> Subject: Re: Looking for Adam Lehman's CF8 Demos
> 
> http://carehart.org/blog/client/index.cfm/2008/9/29/adam_lehma
> n_accident
> 
> :-( 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314575
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Rick Mason
Adam Lehman was hit by a car in London:

http://carehart.org/blog/client/index.cfm/2008/9/29/adam_lehman_accident


Rick

On Wed, Oct 29, 2008 at 4:22 PM, Loathe <[EMAIL PROTECTED]> wrote:

> What accident?
>
> Tim Heald
>
> > -Original Message-
> > From: Steve Moore [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, October 29, 2008 4:02 PM
> > To: cf-talk
> > Subject: Looking for Adam Lehman's CF8 Demos
> >
> > Prior to his accident, Adam Lehman from Adobe had posted
> > version 2 of his CF 8 demos to his website at
> > adrocknaphobia.com. This site is now unavailable and I was
> > wondering if anybody had his zip file? I'm specifically
> > looking for his samples for the CF/Blaze DS chat application.
> >
> > Steve Moore
> > [EMAIL PROTECTED]
> >
> >
> >
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314574
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Wil Genovese
Some wild car in London tried to kill him.  Banged him up pretty good

here's some posts on what happened and how he's doing.

http://carehart.org/blog/client/index.cfm/2008/9/29/adam_lehman_accident

http://kay.smoljak.com/index.php/wishing-adam-lehman-a-speedy-recovery/

http://www.pbell.com/index.cfm/2008/10/1/Adam-Lehman-Doing-Better

http://www.markdrew.co.uk/blog/post.cfm/adam-lehman-is-unwell-but-getting-better



Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well.

On Oct 29, 2008, at 3:22 PM, Loathe wrote:

> What accident?
>
> Tim Heald
>
>> -Original Message-
>> From: Steve Moore [mailto:[EMAIL PROTECTED]
>> Sent: Wednesday, October 29, 2008 4:02 PM
>> To: cf-talk
>> Subject: Looking for Adam Lehman's CF8 Demos
>>
>> Prior to his accident, Adam Lehman from Adobe had posted
>> version 2 of his CF 8 demos to his website at
>> adrocknaphobia.com. This site is now unavailable and I was
>> wondering if anybody had his zip file? I'm specifically
>> looking for his samples for the CF/Blaze DS chat application.
>>
>> Steve Moore
>> [EMAIL PROTECTED]
>>
>>
>>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314573
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Jason Fisher
http://carehart.org/blog/client/index.cfm/2008/9/29/adam_lehman_accident

:-( 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314572
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: passing from form to form

2008-10-29 Thread Azadi Saryev
use ColdFusion.navigate() instead of cflocation?

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/



Scott Spurlock wrote:
> Second form is a cfform as well.  With all cfforms, I have the form submit 
> back to itself, do some processing, and then cflocation to the next cfform.  
> The first cfform submits just fine to the second cfform.  The second cfform 
> processes just fine and submits to the third cfform, but it breaks it out of 
> the cfdiv.  Even if I replace the third cfform with "hello" and nothing else, 
> I just get "hello" on the screen.
>
>
>
> 
> From: Azadi Saryev <[EMAIL PROTECTED]>
> To: cf-talk 
> Sent: Wednesday, October 29, 2008 3:53:41 PM
> Subject: Re: passing from form to form
>
> hmm... is your second form a CFFORM as well or a regular FORM tag?
>
> Azadi Saryev
> Sabai-dee.com
> http://www.sabai-dee.com/
>
>
>
> Scott Spurlock wrote:
>   
>> I have a cfdiv with a cfform inside of it.  I can submit from the first 
>> cfform to a second cfform no problem.  But when I submit from the second 
>> cfform to a third cfform, I break out of the cfdiv.  Why?
>>
>>
>>  
>> 
>
>
>   

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314571
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Loathe
What accident? 

Tim Heald

> -Original Message-
> From: Steve Moore [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, October 29, 2008 4:02 PM
> To: cf-talk
> Subject: Looking for Adam Lehman's CF8 Demos
> 
> Prior to his accident, Adam Lehman from Adobe had posted 
> version 2 of his CF 8 demos to his website at 
> adrocknaphobia.com. This site is now unavailable and I was 
> wondering if anybody had his zip file? I'm specifically 
> looking for his samples for the CF/Blaze DS chat application.
> 
> Steve Moore
> [EMAIL PROTECTED]
> 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314570
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Looking for Adam Lehman's CF8 Demos

2008-10-29 Thread Steve Moore
Prior to his accident, Adam Lehman from Adobe had posted version 2 of his CF 8 
demos to his website at adrocknaphobia.com. This site is now unavailable and I 
was wondering if anybody had his zip file? I'm specifically looking for his 
samples for the CF/Blaze DS chat application.

Steve Moore
[EMAIL PROTECTED]


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314569
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: passing from form to form

2008-10-29 Thread Scott Spurlock
Second form is a cfform as well.  With all cfforms, I have the form submit back 
to itself, do some processing, and then cflocation to the next cfform.  The 
first cfform submits just fine to the second cfform.  The second cfform 
processes just fine and submits to the third cfform, but it breaks it out of 
the cfdiv.  Even if I replace the third cfform with "hello" and nothing else, I 
just get "hello" on the screen.




From: Azadi Saryev <[EMAIL PROTECTED]>
To: cf-talk 
Sent: Wednesday, October 29, 2008 3:53:41 PM
Subject: Re: passing from form to form

hmm... is your second form a CFFORM as well or a regular FORM tag?

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/



Scott Spurlock wrote:
> I have a cfdiv with a cfform inside of it.  I can submit from the first 
> cfform to a second cfform no problem.  But when I submit from the second 
> cfform to a third cfform, I break out of the cfdiv.  Why?
>
>
>  



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314568
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: passing from form to form

2008-10-29 Thread Azadi Saryev
hmm... is your second form a CFFORM as well or a regular FORM tag?

Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/



Scott Spurlock wrote:
> I have a cfdiv with a cfform inside of it.  I can submit from the first 
> cfform to a second cfform no problem.  But when I submit from the second 
> cfform to a third cfform, I break out of the cfdiv.  Why?
>
>
>   

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314567
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


passing from form to form

2008-10-29 Thread Scott Spurlock
I have a cfdiv with a cfform inside of it.  I can submit from the first cfform 
to a second cfform no problem.  But when I submit from the second cfform to a 
third cfform, I break out of the cfdiv.  Why?


  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314566
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: How to know the "real" SO language

2008-10-29 Thread Web Specialist
Thanks Paul. "Real" language is the OS language. For me, "english", because
our server runs in Windows 2003 English language. I need to know the "real"
language because our application runs language-specific command in DOS mode.
I found a "trick" to resolve this:








Cheers
Marco Antonio

On Wed, Oct 29, 2008 at 5:00 PM, Paul Hastings <[EMAIL PROTECTED]>wrote:

> Web Specialist wrote:
> > Administrator(under Java & JVM) we set the parameters -Duser.language=pt
>
> > But, with that JVM parameters, always returns 'pt'.
>
> what else should it return? it's portuguese & you set the JVM. what does
> getLocale() return?
>
> > Do you know how to obtain the "real" language for this server?
>
> what do *you* mean by "real language"?
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314565
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: How to know the "real" SO language

2008-10-29 Thread Paul Hastings
Web Specialist wrote:
> Administrator(under Java & JVM) we set the parameters -Duser.language=pt

> But, with that JVM parameters, always returns 'pt'.

what else should it return? it's portuguese & you set the JVM. what does 
getLocale() return?

> Do you know how to obtain the "real" language for this server?

what do *you* mean by "real language"?

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314564
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


How can you have a variable "topmargin" height on CF8 CFDOCUMENT so that you can have 2 differently sized headers?

2008-10-29 Thread Chris Johnson
Another CF8 CFDocument problem here...

With CF7, you could specify a  value that was shorter 
than the height of the value going in the .  The 
cfdocitem header would just continue past and overlap the content below.

This was fixed by adding a "padding-top:XXX" to the content so that on the 
first page it just shifted the content down a bit to accommodate for the first 
page having a larger header.

However, in CF8, that same setup now shrinks the header so that everything fits 
within the size set in the cfdocument topmargin value.

The problem here is that we have been using a PDF for invoicing that has a 
"master" header on the first page with our logo, company info, etc.

Then on each subsequent page, a much shorter header with just the client name 
and the current page number.

So in CF7, the cfdocument tag had a topmargin value of "1.5".  This along with 
the extra padding from the top of the div holding the content below worked just 
fine.

But now, I have to change the topmargin value to about "3.5" or in order to 
avoid the header shrinking smaller.

So not a problem... until you get to the second page.  Now on every following 
page, there is a large 2" gap between the header and content because of the new 
larger topmargin value.


I've tried using CSS tricks like holding the header stuff in a  and trying 
"height/padding/margin" to force the content to appear larger, but now it seems 
that none of that works and CF scales/zooms the size of the header content to 
whatever percentage will fit in that topmargin value.



I did read that CF8 uses the iText libraries and that via createObject you 
could modify margins with setMargins()... I believe this was on CFSearching.com.

But I have yet to be able to find an example of how I can insert my  
code to only change the margins for the first page, or to only change the 
margins for all non-first pages.



Has anyone made this work?  This is quite a common layout design for things 
CFDocument could be used for.. I have to imagine that someone else has run into 
the same problem?


Thanks in advance, I love  for its populate feature, so I really want to 
be able to make that move to CF8 =/


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314563
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


How to know the "real" SO language

2008-10-29 Thread Web Specialist
Hi all.

Our server is a Windows 2003 with English installation. In CF
Administrator(under Java & JVM) we set the parameters -Duser.language=pt
-Duser.country=BR (Brazilian Portuguese). I'm using this code to know the
language in that server(in future the server language could be changed):








But, with that JVM parameters, always returns 'pt'.

Do you know how to obtain the "real" language for this server?

Cheers
Marco Antonio


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314562
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RTF <=> HTML

2008-10-29 Thread Stephens, Larry V
When working on certain data locally I use a rich text control to format 
memo-type fields of data.

On some of my CF websites I use a javascript-based control for rich text style 
editing. This control inserts proper HTML code.

There are times when I need to change a given field from HTML coding to rich 
text coding (or vice versa). I have written code to do this that I can port to 
CF code but it leaves out a few styling issues, primarily color codes.

Does anyone know of any complete code out there (that's available) to make 
these conversions?

 
Larry V. Stephens
Indiana University
Office of Risk Management
[EMAIL PROTECTED]
812-855-9758
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314561
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: odd sql question

2008-10-29 Thread Adrian Lynch
Ideally you'd want those years in a different table so your SQL would be
better but if you can't or don't want to change things:

SELECT *
FROM yourTable
WHERE yourDateColumn LIKE '%#yourDate#%'

Which isn't gonna be fast but it might be exceptable.

Adrian
Building a database of ColdFusion errors at http://cferror.org/

-Original Message-
From: Scott Stewart
Sent: 29 October 2008 16:58
To: cf-talk
Subject: odd sql question


i have a table with a field (study_category.category_date) that is a
comma delimited list (2004,2005,2006,2007) stored as a NVARCHAR

I need to see if a passed value is in the list:

 WHERE (#arguments.cat_date# in (study_category.category_date))

arguments.cat_date is a four digit number representing the date.

the where clause doesn't seem to work (returns no records, when
logically it should)
Is this the right approach given the nature of the data?


--
Scott Stewart


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314559
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: odd sql question

2008-10-29 Thread Ian Skinner
Scott Stewart wrote:
> i have a table with a field (study_category.category_date) that is a 
> comma delimited list (2004,2005,2006,2007) stored as a NVARCHAR
>
> I need to see if a passed value is in the list:
>
>  WHERE (#arguments.cat_date# in (study_category.category_date))
>
> arguments.cat_date is a four digit number representing the date.
>
> the where clause doesn't seem to work (returns no records, when 
> logically it should)
>   
No it logically shouldn't.  The in clause is to compare a single field 
to a list of values.   It does not compare that a value is part of 
another value that happens to be a list.

With a denormalized data design such as this you are going to have to 
work hard using the LIKE clause.

WHERE study_category.category_date LIKE '#arguments.cat_date#'

Your lucky that a year value can not be part of a larger value or that 
where statement quickly becomes much more complex.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314560
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: odd sql question

2008-10-29 Thread Jason Fisher
Pretty sure that's not going to work for you ... believe the argument on the 
left of the IN has to be a column, not a variable.

In any case, your best bet is to have the category_date properly normalized out 
into a separate table:

FROM study_category INNER JOIN
study_category_date ON study_category.category = study_category_date.category
WHERE study_category_date.category_date = 

If that's not an option, then try this:

WHERE ',' & study_category.category_date & ',' LIKE '%,#arguments.cat_date#,#'

Basically, by wrapping the ',' around both ends, now I have a set of ,200X, 
entries and so I can always test for ",200X,".



>i have a table with a field (study_category.category_date) that is a 
>comma delimited list (2004,2005,2006,2007) stored as a NVARCHAR
>
>I need to see if a passed value is in the list:
>
> WHERE (#arguments.cat_date# in (study_category.category_date))
>
>arguments.cat_date is a four digit number representing the date.
>
>the where clause doesn't seem to work (returns no records, when 
>logically it should)
>Is this the right approach given the nature of the data?
>
>
>-- 
>Scott Stewart
>ColdFusion Developer
>
>Office of Research Information Systems
>Research & Economic Development
>University of North Carolina at Chapel Hill
>
>Phone:(919)843-2408
>Fax: (919)962-3600
>Email: [EMAIL PROTECTED] 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314558
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


odd sql question

2008-10-29 Thread Scott Stewart
i have a table with a field (study_category.category_date) that is a 
comma delimited list (2004,2005,2006,2007) stored as a NVARCHAR

I need to see if a passed value is in the list:

 WHERE (#arguments.cat_date# in (study_category.category_date))

arguments.cat_date is a four digit number representing the date.

the where clause doesn't seem to work (returns no records, when 
logically it should)
Is this the right approach given the nature of the data?


-- 
Scott Stewart
ColdFusion Developer

Office of Research Information Systems
Research & Economic Development
University of North Carolina at Chapel Hill

Phone:(919)843-2408
Fax: (919)962-3600
Email: [EMAIL PROTECTED]



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314557
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Prototype problems with cfgrid

2008-10-29 Thread Charles Lewis
Solution! After tearing the Javascript apart for both libraries, I found the
problem. Both libraries use a function called "defer", which basically just
delays performing that action until the interpreter's callstack is empty.
My solution then was to change the name of this function in Prototype and
then just change the name wherever Prototype references it also. None of the
Prototype plugins I have use the function, so it's seems like it's pretty
low-key.

Anyhow, it's not ideal to be modifying the source of a JS library I'm using,
but it -does- work, and I'm a happy camper now.

On Tue, Oct 28, 2008 at 2:46 PM, Charles Lewis <[EMAIL PROTECTED]>wrote:

> I wonder if I used the Ext "Prototype Adapter" if that would do anything?
> Thoughts on that?
>
>
> On Tue, Oct 28, 2008 at 2:32 PM, Phillip M. Vector <
> [EMAIL PROTECTED]> wrote:
>
>> I've had the same issue. All I can offer is not to use prototype on the
>> page your cfgrid is in.
>>
>> Charles Lewis wrote:
>> > Hello everyone, this is my first post here on the Cf-Talk mailing list.
>> Hoping you guys can help me work through a problem I'm having.
>> >
>> > Basically I have a page that contains a cfwindow. On a certain event, I
>> show the cfwindow, and navigate it to a url. On the code that's now inside
>> of the cfwindow, I've got a cfgrid inside of a cfform. When it loads the
>> grid, it throws a "this.refresh is not a function" javascript error in the
>> grid.js file of the EXT library included with ColdFusion. Then when I try to
>> edit an item in a row, it throws a "this.selModel is undefined" error in
>> edit-grid.js
>> >
>> > I isolated the problem to the fact that I'm using Prototype.js. The
>> calling page includes prototype and some other little prototype helpers to
>> do form validation, rounded corners, and a date picker.
>> >
>> > So the problem it appears is that prototype and extjs aren't playing
>> well together. I'm kinda scratching my head here trying to figure out the
>> best way to take care of this. Is there any way to solve this problem other
>> than not using cfgrid or switching to extjs instead of prototype?
>> >
>> > Thanks!
>> > -Charles
>> >
>> >
>>
>> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314556
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Adding & Updating empty values

2008-10-29 Thread Claude Schneegans
 >>here is a good method

Well, actually not so good: if a checkbox is not checked, its name will 
not appear in form.fieldnames,
so the loop on fieldnames will work only on defined fileds and the 
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314555
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Adding & Updating empty values

2008-10-29 Thread Claude Schneegans
 >>I agree, but I still have to enter all the form field names in the 

anyways so I'm not really gaining anything.

I have solved this problem once for all this way :

1. in your form page, add this JS function call onsubmit, ie:
var defaultList = "";
function checkInput(formul)
{
  if(!formul) formul = "formul";
  curRadio = "";
form = document[formul];
if (form == null) return;
for (var i = 0; i < form.elements.length; i++)
  {
  // create default list
  if (field.type && !field.disabled)
  {
  switch (field.type)
  {
  case 'radio':
  case 'checkbox':
  {
if (defaultList.lastIndexOf(field.name) < 0) defaultList += 
"," + field.name;
  break;
  }
  case 'select-one':
  case 'select-multiple':
  {
if (defaultList.lastIndexOf(field.name) < 0) defaultList += 
"," + field.name;
  break;
  }
  } //switch
} // if
} // for
  var inp = form.defaultList;
  if (!inp)
{
inp = document.createElement("INPUT");
inp.type = "hidden";
inp.name = "defaultList";
form.appendChild (inp);
}
  inp.value = defaultList.substr(1);
return;
}
This will add or update a hidden field in your form with the list of all 
fields in your form, empty or not.
2. in your action page, add this CF function:

  
  
  

You can set the default value you want.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314554
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board?

2008-10-29 Thread Mallory Woods
--- Error Text ---
 Error Executing Database Query.
[Macromedia][SQLServer JDBC Driver][SQLServer]Invalid object name
'cf4em_bannedips'.

The error occurred in C:\websites\cf4em\cfcs\cf4em.cfc: line 61
Called from C:\websites\cf4em\cf4em.cfm: line 21
Called from C:\websites\cf4em\cf4em.cfm: line 1
Called from C:\websites\cf4em\index.cfm: line 11
Called from C:\websites\cf4em\cfcs\cf4em.cfc: line 61
Called from C:\websites\cf4em\cf4em.cfm: line 21
Called from C:\websites\cf4em\cf4em.cfm: line 1
Called from C:\websites\cf4em\index.cfm: line 11

59 : or
60 : (
61 : #ipnumber# between startipnumber and endipnumber
62 : and
63 : endipnumber > 0
-- End Error Text --

This is right out of the box.. no modification on the code.

The table is there as created by the script

Thanks


On Wed, Oct 29, 2008 at 11:22 AM, Will Tomlinson <[EMAIL PROTECTED]>wrote:

> >I am working on getting cf4em setup but its throwing lots of errors for
> some
> >reason.
>
> What errors are you getting?
>
> Will
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314553
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board?

2008-10-29 Thread Will Tomlinson
>I am working on getting cf4em setup but its throwing lots of errors for some
>reason.

What errors are you getting?

Will 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314552
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best Open Source Message Board?

2008-10-29 Thread Rob Parkhill
is that ahem ray, or Amen?
Rob

On Wed, Oct 29, 2008 at 11:12 AM, Raymond Camden <[EMAIL PROTECTED]> wrote:

> On Wed, Oct 29, 2008 at 9:39 AM, Mallory Woods <[EMAIL PROTECTED]>
> wrote:
>
> > I am working on getting cf4em setup but its throwing lots of errors for
> some
> > reason.
> >
>
> Then try Galleon. It never has errors. Seriously.
>
> (Ahem)
>
> -Raymond Camden
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314551
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best Open Source Message Board?

2008-10-29 Thread Raymond Camden
On Wed, Oct 29, 2008 at 9:39 AM, Mallory Woods <[EMAIL PROTECTED]> wrote:

> I am working on getting cf4em setup but its throwing lots of errors for some
> reason.
>

Then try Galleon. It never has errors. Seriously.

(Ahem)

-Raymond Camden

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314550
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Looping over form structs into an array or query

2008-10-29 Thread Tom King
Thanks for the help all;

finally settled on:


























It's the "#testStruct["UrlText_" & counter]#" syntax which was the key for
me!

Ta
T

2008/10/29 Tom Chiverton <[EMAIL PROTECTED]>

> On Wednesday 29 Oct 2008, Jake Churchill wrote:
> > 
>
> This will loop over each Url and Text, where as you really want one to be
> both
> url and text.
> Use one of the condition based loops instead.
>
> --
> Tom Chiverton
> Helping to quickly repurpose user-centric synergies
>
>
>
> 
>
> This email is sent for and on behalf of Halliwells LLP.
>
> Halliwells LLP is a limited liability partnership registered in England and
> Wales under registered number OC307980 whose registered office address is at
> Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A
> list of members is available for inspection at the registered office. Any
> reference to a partner in relation to Halliwells LLP means a member of
> Halliwells LLP.  Regulated by The Solicitors Regulation Authority.
>
> CONFIDENTIALITY
>
> This email is intended only for the use of the addressee named above and
> may be confidential or legally privileged.  If you are not the addressee you
> must not read it and must not use any information contained in nor copy it
> nor inform any person other than Halliwells LLP or the addressee of its
> existence or contents.  If you have received this email in error please
> delete it and notify Halliwells LLP IT Department on 0870 365 2500.
>
> For more information about Halliwells LLP visit www.halliwells.com.
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314549
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFCHART & Developer Edition Watermark

2008-10-29 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Here's more info:  On that PC that I did the fresh install of CF8, I was able 
to run my script with "standard" CFCHARTs in it just fine.  As soon as I ran 
the FIRST script that did calls to the java objects to create undocumented 
Webcharts charts, the watermark began showing up not only on those charts, but 
also on all charts that are generated from the "standard" CFCHART tags.  
Apparently the Webcharts engine thinks that I have violated the license, and is 
somehow tracking that fact across restarts, reboots, etc.

I've searched through the Registry, cannot find any tracks there.  Cannot find 
any files with new dates on them.  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314548
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread Tom Chiverton
On Wednesday 29 Oct 2008, Peter Boughton wrote:
> learning how to make wheels - for everything else you should pick an
> existing wheel and update as necessary, rather than rolling your own.

There is another way:
http://www.joelonsoftware.com/articles/fog07.html

-- 
Tom Chiverton
Helping to collaboratively implement environments





This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314547
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board? / re-inventing the wheel

2008-10-29 Thread Peter Boughton
Hmm, just saw this and wanted to highlight it...

> there is no time for re-inventing the wheel.

What do you mean there is no time?

If you had more time you would deliberately duplicate work? :/


One of the points of Free Software (Open Source) is that even if something 
doesn't do what you want, you are free to modify it do what you want.

The only potentially valid reason for re-inventing the wheel is if you're 
learning how to make wheels - for everything else you should pick an existing 
wheel and update as necessary, rather than rolling your own.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314546
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board?

2008-10-29 Thread Mallory Woods
Thanks for the replys

First it has to be a CF based board.
Open source is good just in case we need to tweak it.

Features: Image uploading, link posting, a good simple admin, subscription
to posts etc.

I am working on getting cf4em setup but its throwing lots of errors for some
reason.

On Wed, Oct 29, 2008 at 10:30 AM, Peter Boughton <[EMAIL PROTECTED]>wrote:

> > What is the best open source message board?
>
> Beehive Forum is best, but that's in PHP rather than CFML.
>
>
>
> > It will be installed on a system that is using CF7.
>
> Go here: http://www.riaforge.org/index.cfm?event=page.search
> Type "forum" and you will get several options...
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314545
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SQL help..

2008-10-29 Thread cf coder
I'm really greatful to you for the post.
>Just answered this on the SQL list:
>http://www.houseoffusion.com/groups/sql/thread.cfm/threadid:855 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314544
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best Open Source Message Board?

2008-10-29 Thread Peter Boughton
> What is the best open source message board?

Beehive Forum is best, but that's in PHP rather than CFML.



> It will be installed on a system that is using CF7.

Go here: http://www.riaforge.org/index.cfm?event=page.search
Type "forum" and you will get several options... 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314543
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best Open Source Message Board?

2008-10-29 Thread Tom Chiverton
On Wednesday 29 Oct 2008, Mallory Woods wrote:
> wheel. What is the best open source message board? It will be installed on
> a system that is using CF7.

Best is very subjective.
What features are important to you ?

-- 
Tom Chiverton
Helping to professionally benchmark internet IPOs





This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314542
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: SQL help..

2008-10-29 Thread Peter Boughton
Just answered this on the SQL list:
http://www.houseoffusion.com/groups/sql/thread.cfm/threadid:855




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314541
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


SQL help..

2008-10-29 Thread cf coder
Hello there,

I do appreciate this isn't the right forum for posting this question but I have 
posted my question in the SQL forum but I haven't heard anything back. It's a 
very straightforward query... at least I hope it is for someone with good sql 
skills.

I was hoping someone could help here. I have a table called 'phone_numbers' 
with two columns, one called 'person_name' and the other called 'number'. A 
person can have more than one number and I want the query to return all 
person's that have more than 3 numbers.

Jamie   1
Jamie   2
Jamie   3
Jamie   4
Allan   5
Vicki   6
Marilyn 7
Paul8
Scott   9
Scott   10
Scott   11
Scott   12

So in the above example, the query would return Jamie and Scott. How do I get 
this data?

Regards,
John 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314540
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board?

2008-10-29 Thread Phillip M. Vector
PHPBB has several security flaws that can be exploited. I would steer 
clear of it personally.

Steve LaBadie wrote:
> We use phpbb
> 
> Steve LaBadie, Web Manager
> East Stroudsburg University
> 200 Prospect St.
> East Stroudsburg, Pa 18301
> 570-422-3999
> http://www.esu.edu
> [EMAIL PROTECTED]
> 
> -Original Message-
> From: Mallory Woods [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, October 29, 2008 10:19 AM
> To: cf-talk
> Subject: Best Open Source Message Board?
> 
> Hello All,
> 
> I have a quick project to do and there is no time for re-inventing the
> wheel. What is the best open source message board? It will be installed
> on a
> system that is using CF7.
> 
> Thanks in Advance!
> 
> 
> 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314539
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best Open Source Message Board?

2008-10-29 Thread Rob Parkhill
or on riaforge
http://cf4em.riaforge.org/

Rob


On Wed, Oct 29, 2008 at 10:17 AM, Steve LaBadie <[EMAIL PROTECTED]>wrote:

> We use phpbb
>
> Steve LaBadie, Web Manager
> East Stroudsburg University
> 200 Prospect St.
> East Stroudsburg, Pa 18301
> 570-422-3999
> http://www.esu.edu
> [EMAIL PROTECTED]
>
> -Original Message-
> From: Mallory Woods [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, October 29, 2008 10:19 AM
> To: cf-talk
> Subject: Best Open Source Message Board?
>
> Hello All,
>
> I have a quick project to do and there is no time for re-inventing the
> wheel. What is the best open source message board? It will be installed
> on a
> system that is using CF7.
>
> Thanks in Advance!
>
>
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314538
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Best Open Source Message Board?

2008-10-29 Thread Steve LaBadie
We use phpbb

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
[EMAIL PROTECTED]

-Original Message-
From: Mallory Woods [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 29, 2008 10:19 AM
To: cf-talk
Subject: Best Open Source Message Board?

Hello All,

I have a quick project to do and there is no time for re-inventing the
wheel. What is the best open source message board? It will be installed
on a
system that is using CF7.

Thanks in Advance!




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314537
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: RSS Issue

2008-10-29 Thread Steve LaBadie
I am using version 7,0,2,142559

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
[EMAIL PROTECTED]

-Original Message-
From: Dominic Watson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 29, 2008 10:12 AM
To: cf-talk
Subject: Re: RSS Issue

I just ran the following code without any problems (got a dump of your
newsfeed):

http://www4.esu.edu/news.xml";) />


As I said though, you need to be using CF7 or above for this to work.

Dominic

2008/10/29 Steve LaBadie <[EMAIL PROTECTED]>:
> Dominic,
>
> If I remove the cfhttp the page errors out saying
> "An error occured while reading an XML document"



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314535
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best Open Source Message Board?

2008-10-29 Thread Tom King
Have a look at Ray Camden's Galleon

http://galleon.riaforge.org/

T

2008/10/29 Mallory Woods <[EMAIL PROTECTED]>

> Hello All,
>
> I have a quick project to do and there is no time for re-inventing the
> wheel. What is the best open source message board? It will be installed on
> a
> system that is using CF7.
>
> Thanks in Advance!
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314536
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Best Open Source Message Board?

2008-10-29 Thread Mallory Woods
Hello All,

I have a quick project to do and there is no time for re-inventing the
wheel. What is the best open source message board? It will be installed on a
system that is using CF7.

Thanks in Advance!


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314534
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: RSS Issue

2008-10-29 Thread Dominic Watson
I just ran the following code without any problems (got a dump of your
newsfeed):

http://www4.esu.edu/news.xml";) />


As I said though, you need to be using CF7 or above for this to work.

Dominic

2008/10/29 Steve LaBadie <[EMAIL PROTECTED]>:
> Dominic,
>
> If I remove the cfhttp the page errors out saying
> "An error occured while reading an XML document"

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314533
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Looping over form structs into an array or query

2008-10-29 Thread Tom Chiverton
On Wednesday 29 Oct 2008, Jake Churchill wrote:
> 

This will loop over each Url and Text, where as you really want one to be both 
url and text.
Use one of the condition based loops instead.

-- 
Tom Chiverton
Helping to quickly repurpose user-centric synergies





This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314532
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Apache/CF8 problems

2008-10-29 Thread Will Tomlinson
Thanks guys! We'll see if we can get it straightened out. 

Will 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314531
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Looping over form structs into an array or query

2008-10-29 Thread Tom King
I get this cryptic error when running that:

Element 1 is undefined in a CFML structure referenced as part of an
expression.
even though my stuff is getting passed:

Link Name 1 


URL 1





2008/10/29 Jake Churchill <[EMAIL PROTECTED]>

> You are close.  Try this:
>
> 
> 
> 
>  
>  
> 
>
>
>  
>  
> 
>
> -Jake Churchill
>
> Tom King wrote:
> > Hi All,
> >
> > I've got a form where I've got a potentially unknown number of form
> fields
> > as they're being added by Javascript;
> >
> > i.e
> > form.linkText_1
> > form.linkUrl_1
> > form.linkText_2
> > form.linkUrl_2
> > form.linkText_3
> > form.linkUrl_3
> > form.linkText_4
> > form.linkUrl_4
> >
> > How can I deal with this at the other end?
> >
> > I can output them (but in no useful order):
> >
> >   
> >   
> >   
> >   Key: #key#, Value: #form[key]#
> >   
> >   
> >   
> >
> > How would I get these into an Array or a Query object where they are
> paired
> > up by number?
> >
> > Thanks
> > T
> >
> >
> >
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314530
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Looping over form structs into an array or query

2008-10-29 Thread Jake Churchill
You are close.  Try this:




  
  
 


  
  


-Jake Churchill

Tom King wrote:
> Hi All,
>
> I've got a form where I've got a potentially unknown number of form fields
> as they're being added by Javascript;
>
> i.e
> form.linkText_1
> form.linkUrl_1
> form.linkText_2
> form.linkUrl_2
> form.linkText_3
> form.linkUrl_3
> form.linkText_4
> form.linkUrl_4
>
> How can I deal with this at the other end?
>
> I can output them (but in no useful order):
>
>   
>   
>   
>   Key: #key#, Value: #form[key]#
>   
>   
>   
>
> How would I get these into an Array or a Query object where they are paired
> up by number?
>
> Thanks
> T
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314529
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Looping over form structs into an array or query

2008-10-29 Thread Adrian Lynch
If they're sequential then this'll help:





#FORM["linkText_" & i]#

#FORM["linkURL_" & i]#





Adrian
Building a database of ColdFusion errors at http://cferror.org/

-Original Message-
From: Tom King
Sent: 29 October 2008 13:37
To: cf-talk
Subject: Looping over form structs into an array or query


Hi All,

I've got a form where I've got a potentially unknown number of form fields
as they're being added by Javascript;

i.e
form.linkText_1
form.linkUrl_1
form.linkText_2
form.linkUrl_2
form.linkText_3
form.linkUrl_3
form.linkText_4
form.linkUrl_4

How can I deal with this at the other end?

I can output them (but in no useful order):

  
  
  
  Key: #key#, Value: #form[key]#
  
  
  

How would I get these into an Array or a Query object where they are paired
up by number?

Thanks
T

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314528
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Looping over form structs into an array or query

2008-10-29 Thread Tom Chiverton
On Wednesday 29 Oct 2008, Tom King wrote:
>   
>   
>   
>   Key: #key#, Value: #form[key]#

pos=listLast(key,'_')
array[pos]=form[key]

-- 
Tom Chiverton
Helping to assertively restore revolutionary global paradigms





This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office. Any reference 
to a partner in relation to Halliwells LLP means a member of Halliwells LLP.  
Regulated by The Solicitors Regulation Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.com.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314527
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Looping over form structs into an array or query

2008-10-29 Thread Scott Stroz
Tom,

When I have situations like that, where form fields can be added to the form
via JS, I will have a form field that tells me how many form fields ther
are.  Then each time I add a form field, I increment that by 1. In my
'action page' I will use that fomr field as the basis for my loop



Text #i#: #form["linkText_" & i]# URL #i#:#form["linkUrl_" & i]#



On Wed, Oct 29, 2008 at 9:37 AM, Tom King <[EMAIL PROTECTED]> wrote:

> Hi All,
>
> I've got a form where I've got a potentially unknown number of form fields
> as they're being added by Javascript;
>
> i.e
> form.linkText_1
> form.linkUrl_1
> form.linkText_2
> form.linkUrl_2
> form.linkText_3
> form.linkUrl_3
> form.linkText_4
> form.linkUrl_4
>
> How can I deal with this at the other end?
>
> I can output them (but in no useful order):
>
>  
>  
>  
>  Key: #key#, Value: #form[key]#
>  
>  
>  
>
> How would I get these into an Array or a Query object where they are paired
> up by number?
>
> Thanks
> T
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314526
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Looping over form structs into an array or query

2008-10-29 Thread Ian Skinner
Well, a structure is probably easiest.

Key: #key#, Value: #form[key]#




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314525
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Looping over form structs into an array or query

2008-10-29 Thread Tom King
Hi All,

I've got a form where I've got a potentially unknown number of form fields
as they're being added by Javascript;

i.e
form.linkText_1
form.linkUrl_1
form.linkText_2
form.linkUrl_2
form.linkText_3
form.linkUrl_3
form.linkText_4
form.linkUrl_4

How can I deal with this at the other end?

I can output them (but in no useful order):

  
  
  
  Key: #key#, Value: #form[key]#
  
  
  

How would I get these into an Array or a Query object where they are paired
up by number?

Thanks
T


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314524
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: RSS Issue

2008-10-29 Thread Steve LaBadie
The RSS feeds do appear on the page with no error messages, just slow in
loading.

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
[EMAIL PROTECTED]

-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 29, 2008 9:04 AM
To: cf-talk
Subject: RE: RSS Issue

Does it eventually return something?

Network issues maybe?

Remember the cfhttp call is coming from the CF server, not your machine.

It returns straight away for me.

Adrian
Building a database of ColdFusion errors at http://cferror.org/


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314523
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: RSS Issue

2008-10-29 Thread Adrian Lynch
Does it eventually return something?

Network issues maybe?

Remember the cfhttp call is coming from the CF server, not your machine.

It returns straight away for me.

Adrian
Building a database of ColdFusion errors at http://cferror.org/

-Original Message-
From: Steve LaBadie
Sent: 29 October 2008 12:56
To: cf-talk
Subject: RE: RSS Issue


Yes, still very slow

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
[EMAIL PROTECTED]

-Original Message-
From: Adrian Lynch 
Sent: Wednesday, October 29, 2008 8:54 AM
To: cf-talk
Subject: RE: RSS Issue

Comment out everything but the RSS code. Does it still run slowly?

Adrian

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314522
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: RSS Issue

2008-10-29 Thread Steve LaBadie
Yes, still very slow

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
[EMAIL PROTECTED]

-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 29, 2008 8:54 AM
To: cf-talk
Subject: RE: RSS Issue

Comment out everything but the RSS code. Does it still run slowly?

Adrian

-Original Message-
From: Steve LaBadie
Sent: 29 October 2008 12:41
To: cf-talk
Subject: RE: RSS Issue

Adrian,

Honestly I don't know. I have cfincludes on the page for the header,
footer and left navigation. The RSS is being generated from the CMS. The
code as written does work but it takes entirely too long to load the
page with just text on it.

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
[EMAIL PROTECTED]

-Original Message-
From: Adrian Lynch
Sent: Wednesday, October 29, 2008 8:37 AM
To: cf-talk
Subject: RE: RSS Issue

Your original code works for me. Is there anything else going on in the
page
that might be causing the problem?

Adrian
Building a database of ColdFusion errors at http://cferror.org/



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314521
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: RSS Issue

2008-10-29 Thread Adrian Lynch
Comment out everything but the RSS code. Does it still run slowly?

Adrian

-Original Message-
From: Steve LaBadie
Sent: 29 October 2008 12:41
To: cf-talk
Subject: RE: RSS Issue

Adrian,

Honestly I don't know. I have cfincludes on the page for the header,
footer and left navigation. The RSS is being generated from the CMS. The
code as written does work but it takes entirely too long to load the
page with just text on it.

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
[EMAIL PROTECTED]

-Original Message-
From: Adrian Lynch
Sent: Wednesday, October 29, 2008 8:37 AM
To: cf-talk
Subject: RE: RSS Issue

Your original code works for me. Is there anything else going on in the
page
that might be causing the problem?

Adrian
Building a database of ColdFusion errors at http://cferror.org/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314520
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: RSS Issue

2008-10-29 Thread Steve LaBadie
Adrian,

Honestly I don't know. I have cfincludes on the page for the header,
footer and left navigation. The RSS is being generated from the CMS. The
code as written does work but it takes entirely too long to load the
page with just text on it.

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
[EMAIL PROTECTED]

-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, October 29, 2008 8:37 AM
To: cf-talk
Subject: RE: RSS Issue

Your original code works for me. Is there anything else going on in the
page
that might be causing the problem?

Adrian
Building a database of ColdFusion errors at http://cferror.org/


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314519
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: RSS Issue

2008-10-29 Thread Adrian Lynch
Your original code works for me. Is there anything else going on in the page
that might be causing the problem?

Adrian
Building a database of ColdFusion errors at http://cferror.org/

-Original Message-
From: Steve LaBadie
Sent: 29 October 2008 12:25
To: cf-talk
Subject: RE: RSS Issue


Dominic,

If I remove the cfhttp the page errors out saying
"An error occured while reading an XML document"

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
[EMAIL PROTECTED]
-Original Message-
From: Dominic Watson
Sent: Tuesday, October 28, 2008 3:57 PM
To: cf-talk
Subject: Re: RSS Issue

cfhttp is not neccessary here if you are using CF7 or above. Either...

http://www4.esu.edu/news.xml";) />

HTH

Dominic

2008/10/28 Steve LaBadie <[EMAIL PROTECTED]>:
> I am pulling an RSS feed to my page using this code:
>
>
>
> 
>
> http://www4.esu.edu/news.xml"; method="get">
>
> 
>
> 
>
> 
>
> 
>
> 
>
>  #objRSS.rss.channel.item[i].title.xmltext# 
>
> 
>
>  #objRSS.rss.channel.item[i].description.xmltext#

>
> |  class="eventlink">more
>
> 
>
> all news
>>> 


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314518
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: RSS Issue

2008-10-29 Thread Steve LaBadie
Dominic,

If I remove the cfhttp the page errors out saying 
"An error occured while reading an XML document"

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
[EMAIL PROTECTED]
-Original Message-
From: Dominic Watson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 28, 2008 3:57 PM
To: cf-talk
Subject: Re: RSS Issue

cfhttp is not neccessary here if you are using CF7 or above. Either...

http://www4.esu.edu/news.xml";) />

HTH

Dominic

2008/10/28 Steve LaBadie <[EMAIL PROTECTED]>:
> I am pulling an RSS feed to my page using this code:
>
>
>
> 
>
> http://www4.esu.edu/news.xml"; method="get">
>
> 
>
> 
>
> 
>
> 
>
> 
>
>  #objRSS.rss.channel.item[i].title.xmltext# 
>
> 
>
>  #objRSS.rss.channel.item[i].description.xmltext#

>
> |  class="eventlink">more
>
> 
>
> all news
>>> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314517
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: link on a cfchart

2008-10-29 Thread Raymond Camden
Your JS for the link is very odd. Setting location to chr(35)? Is that
a trick of some kind? If your intent is to simply open a new window
with the same chart + extra stuff on the page, then your link should
include the chart name, or some other identifier. So if I had two
charts on the page, one for nukes, one for puppy dogs, I'd simply do
url="window.open('detail.cfm?chart=X') where X is hard coded to
signify which chart you want on the detail page.

On Wed, Oct 29, 2008 at 5:02 AM, Julien fan <[EMAIL PROTECTED]> wrote:
> Hi,
> I have several cfchart in my page and i would like, when a user clicks on a 
> graph, another page open with the graph and the first page with all graph 
> always always display.
>
> This is my code: The graph on the new page is correct but the main page lose 
> data and an error message appear : #object#.
> An other problem with option url is : we can click only on the bar of the 
> graph and no on all the graph...
>
>
>
>   format="jpg"
>  backgroundColor="white"
>  xAxisTitle="#reportType#"
>   
>yAxisTitle="#kmType# hit counts"
>  font="Arial"
>  gridlines=6
>  showXGridlines="yes"
>  showYGridlines="yes"
>  showborder="yes"
>  chartwidth="680"
>  chartheight="200"
>  seriesPlacement="cluster"
> url="javascript:window.location='chr(35)';window.open('kpi-history-export.cfm?');">
>
>
> If someone has an idea...
>
> Thanks
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314516
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


link on a cfchart

2008-10-29 Thread Julien fan
Hi,
I have several cfchart in my page and i would like, when a user clicks on a 
graph, another page open with the graph and the first page with all graph 
always always display.

This is my code: The graph on the new page is correct but the main page lose 
data and an error message appear : #object#.
An other problem with option url is : we can click only on the bar of the graph 
and no on all the graph...




 


If someone has an idea...

Thanks


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314515
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Any changes in neo-cron.xml from ColdFusion MX 6.1 to ColdFusion 8?

2008-10-29 Thread Markus Wollny
Hi!

We're currently upgrading our CFMX 6.1 servers to ColdFusion 8; one of those 
servers is more or less exclusively running scheduled tasks - quite a lot of 
these in fact. As I wish to keep the downtime as short as possible, I wondered 
if the format of the neo-cron.xml has changed in any significant way from 
ColdFusion MX 6.1 to ColdFusion 8 - because if it hasn't, I could simply copy 
that file over from my CF MX installation without having to reconfigure each 
scheduled task manually (with ColdFusion 8 stopped, of course).

I haven't found anything neither in the docs nor on this mailinglist regarding 
this issue. Manually comparing a couple of samples, I only found only one 
additional element

  

  

for each scheduled task.

I am now planning to simply edit my CF MX 6.1 neo-cron.xml and insert this new 
element into every -element, 
stop CF8, copy that file into {coldfusion8-root}/lib, start the server and hope 
for the best.

Am I missing anything? Has anybody tried that yet?

Kind regards

   Markus


Computec Media AG
Sitz der Gesellschaft und Registergericht: Fürth (HRB 8818)
Vorstandsmitglieder: Johannes S. Gözalan (Vorsitzender) und Rainer Rosenbusch
Vorsitzender des Aufsichtsrates: Jürg Marquard 
Umsatzsteuer-Identifikationsnummer: DE 812 575 276



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:314514
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4