Re: Cftree not working on CF 8

2009-03-10 Thread Tom Chiverton
On Monday 09 Mar 2009, N K wrote: > Nothing is displayed.Yes all the other part of the page is being displayed. These can not both be true :-) For instance, what does the embed code look like ? -- Tom Chiverton Helping to synergistically develop third-generation fine-grained error-free web-ena

Re: Cftree not working on CF 8

2009-03-09 Thread N K
Nothing is displayed.Yes all the other part of the page is being displayed. The debugging section shows that the query is running,nothing seems to be wrong. > On Friday 06 Mar 2009, N K wrote: > > I have menu list of items being displayed through CFtree using > > foramt="flash". The same code w

Re: Cftree not working on CF 8

2009-03-09 Thread Tom Chiverton
On Friday 06 Mar 2009, N K wrote: > I have menu list of items being displayed through CFtree using > foramt="flash". The same code works on CF 7 but does not work on CF 8. > Any idea what would lead to this? What is being output on the page ? Are all the referenced resources being loaded ? --

Re: cftree and cfgrid

2008-04-07 Thread Andrew Scott
? What do u mean by merge? On Mon, Apr 7, 2008 at 9:58 PM, Richard White <[EMAIL PROTECTED]> wrote: > Hi > > is there some way to merge the cftree and the cfgrid. the functionality that > we need it to have a cftree with another column next to the tree column, if > it is not possible to merge

Re: cftree Refresh

2007-11-05 Thread gary gilbert
Hi guys, I would say this is a bug in the CF implementation. You may want to log it as such. -- Gary Gilbert http://www.garyrgilbert.com/blog ~| ColdFusion is delivering applications solutions at at top companies around the

Re: cftree Refresh

2007-11-04 Thread Steve Rucker
Did you ever find the solution to this issue? I'm having the same problem with cftree refresh . . . >The CFC returns the data correctly. When the page loads, the tree loads >nodes well. > >2007/8/2, Brian Kotek <[EMAIL PROTECTED]>: >> ~~

Re: cftree Refresh

2007-11-04 Thread Steve Rucker
>Hello, > >I'm trying to do a refresh to a CFTREE, but an error appears in the console: >- >Error: _6a.parent has no properties >Archivo de origen: http://192.168.1.5/CFIDE/scripts/ajax/package/cftree.js >Línea: 219 >- > >This is my form: > > > > > > > >And this is

Re: cftree Refresh

2007-08-03 Thread Bruno Paz
Thats my doubt... because in the CF8 Documentation, in the ajax Javascript Functions appears this sintax: ColdFusion.Tree.refresh(*name*) 2007/8/3, Brian Kotek <[EMAIL PROTECTED]>: > > What exactly do you think is going to happen when you click the refresh > button? Because all it is doing is c

Re: cftree Refresh

2007-08-03 Thread Bruno Paz
The CFC returns the data correctly. When the page loads, the tree loads nodes well. 2007/8/2, Brian Kotek <[EMAIL PROTECTED]>: > > Does the CFC method return the data in the correct format for use with the > tree control? > > On 8/2/07, Bruno Paz <[EMAIL PROTECTED]> wrote: > > > > Hello, > > > > I

Re: cftree Refresh

2007-08-02 Thread Greg Fuller
Good Question. Bruno and I both are getting the javascript error he indicated, and I don't think that's supposed to happen. I was kinda thinking that it would reload the root nodes, but I haven't really thought it through. I just tried it because I recognized it as a modification to Forta's examp

Re: cftree Refresh

2007-08-02 Thread Brian Kotek
What exactly do you think is going to happen when you click the refresh button? Because all it is doing is calling refresh() on the grid, no data is being passed or updated, so I would think you wouldn't see any change at all. On 8/2/07, Greg Fuller <[EMAIL PROTECTED]> wrote: > > That 0 in my post

Re: cftree Refresh

2007-08-02 Thread Greg Fuller
Brian, for me it did 0 that is, the tree got the data correctly but the refresh did not work. I copied dirtree.cfc directly from the Forta's third code box here: http://www.forta.com/blog/index.cfm/2007/6/5/ColdFusion-Ajax-Tutorial-5-File-System-Browsing-With-The-Tree-Control On 8/2/07, Brian

Re: cftree Refresh

2007-08-02 Thread Greg Fuller
I tried it (using Forta's dirtree CFC, and it didn't work for me either. I don't know why it's not working - it is finding the tree.js. I know that's not very helpful. Sorry. On 8/2/07, Bruno Paz <[EMAIL PROTECTED]> wrote: > Hello, > > I'm trying to do a refresh to a CFTREE, but an error appears

Re: cftree Refresh

2007-08-02 Thread Greg Fuller
That 0 in my post should not be there. On 8/2/07, Greg Fuller <[EMAIL PROTECTED]> wrote: > Brian, for me it did 0 that is, the tree got the data correctly but > the refresh did not work. > > I copied dirtree.cfc directly from the Forta's third code box here: > > http://www.forta.com/blog/index.cf

Re: cftree Refresh

2007-08-02 Thread Brian Kotek
Does the CFC method return the data in the correct format for use with the tree control? On 8/2/07, Bruno Paz <[EMAIL PROTECTED]> wrote: > > Hello, > > I'm trying to do a refresh to a CFTREE, but an error appears in the > console: > - > Error: _6a.parent has no properties > Archivo de

Re: CFTREE Java Applet fails to load

2007-07-20 Thread Tom Chiverton
On Thursday 19 Jul 2007, [EMAIL PROTECTED] wrote: > Any ideas? Do other java applets work ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and

Re: cftree question

2006-07-11 Thread kurt schroeder
> is there a way to load a cftree collapsed on initial load? The format > i'm using is flash. > Thanks > KES Yes there is it's on the item control. expand="No" KES ~| Introducing the Fusion Authority Quarterly Update. 80 pages

Re: CFTREE Object - Looping through structure

2005-10-26 Thread Thomas Chiverton
> http://www.houseoffusion.com/cf_lists/messages.cfm/forumid:4/threadid:42965 startNodeId=somethingOrOther; (you know where you are staring from) while hasParent(startNodeId){ listAdd(aList,nameOfNode(startNodeId) startNode=getParentOfNode(startNodeId) } aList=listReverse(aList);

Re: CFTREE Object - Looping through structure

2005-10-26 Thread Stephen Whiteley
>On Tuesday 25 October 2005 17:51, Stephen Whiteley wrote: >> I always seem to have a way of wording questions, that inspire no answers, >> does anyone want any clarification or more information? > >You're not sure how to write a recursive function in CF ? >You've tried and it craps out ? > >-- >

Re: CFTREE Object - Looping through structure

2005-10-26 Thread Thomas Chiverton
On Tuesday 25 October 2005 17:51, Stephen Whiteley wrote: > I always seem to have a way of wording questions, that inspire no answers, > does anyone want any clarification or more information? You're not sure how to write a recursive function in CF ? You've tried and it craps out ? -- Tom Chive

Re: CFTREE Object - Looping through structure

2005-10-25 Thread Stephen Whiteley
I always seem to have a way of wording questions, that inspire no answers, does anyone want any clarification or more information? Cheers Steve ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket applica

RE: cftree error after an upgrade

2005-01-20 Thread Dave Watts
> cftree error after an upgrade > I recently upgraded a server from 5 to MX. I’m trying to > use the cftree tag but the applet fails to load. Checking the > Java Console I got the following error: > > load: class coldfusion.applets.CFTreeApplet.class not found. > java.lang.ClassNotFoundExcept

Re: cftree error after an upgrade

2005-01-20 Thread Richard East
Spot on. It was just mapping a virtual directory! Thank you. Richard >Can you see the /CFIDE/classes from your webroot? This is where the >cfapplets.jar is kept, and he reference to is is in the HTML that CF >spits out when you use cftree, so you'll either need a copy of it >under your webroot,

Re: cftree error after an upgrade

2005-01-20 Thread Bert Dawson
Can you see the /CFIDE/classes from your webroot? This is where the cfapplets.jar is kept, and he reference to is is in the HTML that CF spits out when you use cftree, so you'll either need a copy of it under your webroot, or a virtual directory to point to it. Cheers Bert ps there might be a way

RE: cftree on client

2004-12-20 Thread Martin Parry
Afraid you'd have to write and ActiveX Control or Java Applet (Assuming you want it embedded in the web page) which would then need signing by a trusted certification authority (this would need to be a developers licence). Martin Parry Macromedia Certified Developer http://www.BeetrootStreet.co.uk

Re: cftree on client

2004-12-20 Thread Joe Rinehart
Ken, No - ColdFusion is purely server-side, and can't do anything with the client's filesystem. Using the 's "Browse" button will show you whatever their client browser's default mode of handling it is, which in Windows will be the open file dialog. This is the 'tree' most people are used to. -

Re: cftree - autorefresh

2004-12-08 Thread Charles Heizer
Hi Dave, Have you used www.treeview.net with CFLDAP? Thanks, - Charles On Nov 23, 2004, at 10:57 AM, Dave Watts wrote: >> Stop using cftree. There are much better alternatives. >> Check out www.treeview.net ... > > I'll second that. We're using treeview.net's product for some projects > with

Re: cftree - autorefresh

2004-12-08 Thread Thomas Chiverton
On Tuesday 23 Nov 2004 17:55 pm, Emmet McGovern wrote: > code example of using treeview with cf I can send it to you. Just email Is anyone building the tree server side with CF ? What about adding nodes at run time via the Pengoworks Gateway or Neuromancer ? -- Tom Chiverton Advanced ColdFusi

RE: cftree - autorefresh

2004-11-23 Thread Dave Watts
> Stop using cftree. There are much better alternatives. > Check out www.treeview.net ... I'll second that. We're using treeview.net's product for some projects with great success. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax: 202-797-5444 ~~

RE: cftree - autorefresh

2004-11-23 Thread Emmet McGovern
Stop using cftree. There are much better alternatives. Check out www.treeview.net or jcomponents in the macromedia exchange. If you need a code example of using treeview with cf I can send it to you. Just email me. Emmet -Original Message- From: Charles Heizer [mailto:[EMAIL PROTECTED

Re: cftree cftreeitem CF5 vs CFMX61

2004-10-12 Thread Francine Kalonji
Thanks Charles! Will look into. Francine. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: cftree cftreeitem CF5 vs CFMX61

2004-10-08 Thread Charles Heizer
I had the same problem. I found it's a bug in CFMX 6.1. If the value of   cftreeitem contains a comma it will parse the value twice placing it at   the root and in the tree. Macromedia confirmed this as a issue and have   told me that it's been fixed in Blackstone. What I've had to do is upgrade t

Re: CFTREE does not work on some machines

2004-01-06 Thread Thomas Chiverton
On Monday 05 Jan 2004 21:46 pm, Debbie McDaniel wrote: > I have been successfully using CFTREE in a web application (CF 4.5.2 > Windows 2000 SP3) since 2000. One of our execs recently purchased a new > laptop (Windows XP IE 6) and now CFTREE no longer works on his machine. > It worked on his old ma

RE: CFTREE does not work on some machines

2004-01-05 Thread peter . tilbrook
TECTED]>     media.com>   cc:    Subject:  RE: CFTREE does not work on s

RE: CFTREE does not work on some machines

2004-01-05 Thread Debbie Dickerson
There's a link to the JVM download page on the Sun site in this TechNote: http://www.macromedia.com/support/coldfusion/ts/documents/admin_jre.htm Debbie   _   From: Debbie McDaniel [mailto:[EMAIL PROTECTED] Sent: Monday, January 05, 2004 4:47 PM To: CF-Talk Subject: CFTREE does not work

Re: CFTREE does not work on some machines

2004-01-05 Thread Bryan Stevenson
Oh my...CFTREE and CFGRID in the same app...yikes!! These are 2 of the worst ever CF tags and now you are unfortunately finding that out the hard way ;-) There are custom tags out there that will probably handle these tasks, but I don't know any off the top of my head (I just write custom code wh

RE: cftree fckeditor js close window..

2003-08-14 Thread Ihrig Paul E Cont 88 ABW/EM
OK.. THIS WORKS... #Global_Images.name# this dosnt.. same page.. so i cant call js inside of a cftree tag?? thanks -paul ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoff

RE: CFtree fontsize parameter

2003-01-03 Thread Luis Lebron
I tried it. Still doesn't work. thanks -Original Message- From: Pablo Varando [mailto:[EMAIL PROTECTED]] Sent: Friday, January 03, 2003 4:59 PM To: CF-Talk Subject: Re: CFtree fontsize parameter Since I've never used CFTREE ;), that's what I assumed, but further invest

Re: CFtree fontsize parameter

2003-01-03 Thread Pablo Varando
Since I've never used CFTREE ;), that's what I assumed, but further investigation into it, try this instead: fontSize = "20 pt" See if that works :) Pablo - Original Message - From: "Luis Lebron" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, January 03, 2003 4:41 PM

Re: CFtree fontsize parameter

2003-01-03 Thread Pablo Varando
Font size for text in the tree control, measured in points. So use from 1 - 7. Pablo - Original Message - From: "Luis Lebron" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, January 03, 2003 4:41 PM Subject: CFtree fontsize parameter > What is the correct syntax for

Re: CFTREE Help Needed.

2002-10-25 Thread cliff
hey, Writing a custom tag for this specific situation is probably your best bet. The custom tag would accept an SH_ID, build the CFTREEITEM tag for that specific node of the tree, execute a query against your table where SH_PARENT = (the current SH_ID), loop through the results of the query, a

RE: CFTREE on CFMX

2002-10-02 Thread Lee Fuller
Not sure when that will be. Haven't heard. But MM monitors this list, so maybe they'll give us an update on the update(r)? | -Original Message- | From: Ray Bujarski [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, October 02, 2002 4:17 PM | To: CF-Talk | Subject: RE: CFTR

RE: CFTREE on CFMX

2002-10-02 Thread Ray Bujarski
until the updater is released... whenever that is going to be. Please excuse my attitude, I am just a little peeved at MM right now. -Original Message- From: Debbie Dickerson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 4:22 PM To: CF-Talk Subject: RE: CFTREE on CFMX Bug

RE: CFTREE on CFMX

2002-10-02 Thread Debbie Dickerson
use any of the applets located within the ColdFusion administrator? Deb -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 6:54 PM To: CF-Talk Subject: RE: CFTREE on CFMX No, it's not a broken image. That is simply the result I am getting

RE: CFTREE on CFMX

2002-10-02 Thread Ray Bujarski
Wow! Do you know when they plan to release the next updater? Thanks for your response. -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 4:02 PM To: CF-Talk Subject: RE: CFTREE on CFMX Patch won't be out until next up

RE: CFTREE on CFMX

2002-10-02 Thread Lee Fuller
Patch won't be out until next updater. | -Original Message- | From: Ray Bujarski [mailto:[EMAIL PROTECTED]] | Sent: Wednesday, October 02, 2002 3:54 PM | To: CF-Talk | Subject: RE: CFTREE on CFMX | | | No, it's not a broken image. That is simply the result I am | gett

RE: CFTREE on CFMX

2002-10-02 Thread Ray Bujarski
EMAIL PROTECTED]] Sent: Wednesday, October 02, 2002 4:00 PM To: CF-Talk Subject: Re: CFTREE on CFMX A broken image? try right clicking on it, get the properties...what is the path? At 03:37 PM 02/10/02 -0700, you wrote: >Does anyone know why the CFTree tag wouldn't work in CFMX on solaris?

RE: CFTREE on CFMX

2002-10-02 Thread Ray Bujarski
So I just found a posting that said MacroMedia plans to update this bug (47077) in the next updater. Does anyone know if there is currently a patch for this issue? I tried the hot fixes and didn't see anything. Thanks for any guidence. Ray -Original Message- From: Ray Bujarski [mailto:[

Re: CFTREE on CFMX

2002-10-02 Thread Brook
A broken image? try right clicking on it, get the properties...what is the path? At 03:37 PM 02/10/02 -0700, you wrote: >Does anyone know why the CFTree tag wouldn't work in CFMX on solaris? I have >been going insane trying to find out what is wrong. All I get in place of >the tree is something

RE: CFTREE changed???

2002-10-01 Thread Bryan Love
om: Debbie Dickerson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 1:08 PM To: CF-Talk Subject: RE: CFTREE changed??? It's bug 47077 (Children appear under parent based on order coded and not due to parent attribute.) The current estimate is for a fix to be included in the

RE: CFTREE changed???

2002-10-01 Thread Debbie Dickerson
It's bug 47077 (Children appear under parent based on order coded and not due to parent attribute.) The current estimate is for a fix to be included in the next Updater release. Deb -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 3:49 PM T

RE: CFTree and IE6 - broken - an update UPDATED

2002-06-24 Thread Mike Kear
the client isn't going to afford to pay me or anyone else to develop a whole new version of this app in Flash 5. Cheers, Mike Kear Windsor, NSW, Australia AFP WebWorks -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 1:47 PM To: CF-Talk S

RE: CFTree and IE6 - broken - an update UPDATED

2002-06-24 Thread Mike Kear
AM To: CF-Talk Subject: RE: CFTree and IE6 - broken - an update I may be coming into this very late, but the fix, for us, was to install an OLDER version of the JRE after installing IE 6: http://java.sun.com/j2se/1.3/download.html When you do the install it'll ask if you want to replac

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread Tipton Josh (orl1jdt)
PROTECTED]] Sent: Monday, June 24, 2002 11:45 AM To: CF-Talk Subject: RE: CFTree and IE6 - broken - an update I may be coming into this very late, but the fix, for us, was to install an OLDER version of the JRE after installing IE 6: http://java.sun.com/j2se/1.3/download.html When you do the

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread Ian Lurie
Ian -Original Message- From: Shawn Regan [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 8:33 AM To: CF-Talk Subject: RE: CFTree and IE6 - broken - an update I am using cftree and cfgrid for two different applications. This was done for our project management site. We are using IE6 it works

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread Shawn Regan
: CF-Talk Subject: RE: CFTree and IE6 - broken - an update Late last week, I posted here that I had a problem that it seemed Macromedia didn't want to know about, and I thought I'd give you an update. The problem is that CFTREE (and I assume CFGRID) don't work with IE6 or NN6.2 bro

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread Stephen Hait
I'm not sure if this will help but I've been dealing with a similar issue recently relating to CFGRID which also relies on a java applet. The problem we were having was not so much browser version related as it was JDE version related (java runtime environment). The JDE version that seems to w

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread Robert Everland
riginal Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 10:41 AM To: CF-Talk Subject: RE: CFTree and IE6 - broken - an update ... and as long as you have CFMX installed. And we're working on CF5 for the foreseeable future. But thanks for the suggest

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread Mike Kear
ne 25, 2002 12:24 AM To: CF-Talk Subject: RE: CFTree and IE6 - broken - an update Without seeing for myself what there is to do I couldn't really give a good suggestion, thought I saw someone else suggested a flash app to do the same thing. If I were you I would go this route, faster,

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread Robert Everland
alled on every machine. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 10:12 AM To: CF-Talk Subject: RE: CFTree and IE6 - broken - an update T

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread todd
Flash Remoting to the rescue? ;) There's a flash app that looks like cftree... I can't imagine it'd be too hard to populate it or build a flash searching app to go through it all. Food for thought. http://www.flashcfm.com/ has some basic Flash 5+ apps together. The latest CFDJ has an articl

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread Mike Kear
Thanks Robert. Where were you when I had to develop the apps??! mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 11:50 PM To: CF-Talk Subject: RE: CFTree and IE6 - broken - an update Cftree and the java apps alike have no worked reliably from day one, I wouldn't use them if I wer

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread Robert Everland
eroga Company http://www.dixonusa.com -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 9:52 AM To: CF-Talk Subject: RE: CFTree and IE6 - broken - an update Late last week, I posted here that I had a problem that it seemed Macromedia didn't wa

RE: CFTree and IE6 - broken - an update

2002-06-24 Thread Mike Kear
Late last week, I posted here that I had a problem that it seemed Macromedia didn't want to know about, and I thought I'd give you an update. The problem is that CFTREE (and I assume CFGRID) don't work with IE6 or NN6.2 browsers. They'll display the tree but not pass the node values to the form

Re: CFTree and IE6 - broken and MM dont seem to be doing anything about it ..

2002-06-22 Thread Marius Milosav
x27;s run sheet, copyright/APRA return, web > site playlist etc. > > What other techniques do people use to repeatedly select records from > larger databases? > > > Cheers, > Mike Kear > Windsor, NSW, Australia > AFP WebWorks > > > > -Original Message-

Re: CFTree and IE6 - broken and MM dont seem to be doing anything about it ..

2002-06-22 Thread David Schmidt
rtificate is invalid..." message when using the 1.3 version. - Original Message - From: "Mike Kear" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, June 22, 2002 6:11 AM Subject: RE: CFTree and IE6 - broken and MM dont seem to be doin

RE: CFTree and IE6 - broken and MM dont seem to be doing anything about it ..

2002-06-22 Thread Mike Kear
ar Windsor, NSW, Australia AFP WebWorks -Original Message- From: Marius Milosav [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 22, 2002 10:59 PM To: CF-Talk Subject: Re: CFTree and IE6 - broken and MM dont seem to be doing anything about it .. My personal advice is to move to a different s

Re: CFTree and IE6 - broken and MM dont seem to be doing anything about it ..

2002-06-22 Thread Marius Milosav
My personal advice is to move to a different solution. We had complaints from customers that updated their browser to IE6 regarding very frequent browser crashes (almost 100% in XP). Some times the crash was immediately once the form with the CFtree was open, some times after a number of clicks on

RE: CFTREE Question

2002-05-23 Thread Bryan Love
The HREF attribute of CFTREEITEM operates exactly the same way as the HREF attribute of an tag. If it's not working for you then you may have a bad CFTREE class. I don't know how that happens, but it happened to me once before. Do you have the 4.5.1 patch installed? +-

RE: CFTREE no longer delivering form node values?

2002-04-03 Thread Ian Lurie
This thread's been resolved - turns out that Macromedia's applet doesn't work with anything later than JRE 1.3.01... -Original Message- From: Mario Martinez R. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 03, 2002 6:56 AM To: CF-Talk Subject: Re: CFTREE no longer

Re: CFTREE no longer delivering form node values?

2002-04-03 Thread Mario Martinez R.
where is the code?? regards Mario --- Ian Lurie <[EMAIL PROTECTED]> escribió: > Hi all, > > I've got a CFTREE that I've been using, literally, > for 3 years without a > hitch. Suddenly today, we started getting CF errors > indicating that the > form.cats.node value is no longer being passed. >

Re: CFTREE was Re: REPOST Old Java controls with CF 5.0?

2001-08-30 Thread Joseph Thompson
t; <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 30, 2001 9:02 PM Subject: Re: CFTREE was Re: REPOST Old Java controls with CF 5.0? > I am not using it for directories, and my tree is constantly changing. The > other problem that 'phumes

Re: CFTREE was Re: REPOST Old Java controls with CF 5.0?

2001-08-30 Thread Bill Davidson
TML, using savecontent, writing to a file, or whatever does not help. -Bill brainbox - Original Message - From: "Joseph Thompson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 30, 2001 11:38 PM Subject: Re: CFTREE was Re: REPOST O

Re: CFTREE was Re: REPOST Old Java controls with CF 5.0?

2001-08-30 Thread phumes1
al Message - >From: <[EMAIL PROTECTED]> >To: "CF-Talk" <[EMAIL PROTECTED]> >Sent: Thursday, August 30, 2001 8:37 PM >Subject: Re: CFTREE was Re: REPOST Old Java controls with CF 5.0? > > > > > > I came across the same problem doing a editor interfa

Re: CFTREE was Re: REPOST Old Java controls with CF 5.0?

2001-08-30 Thread Joseph Thompson
You know, you can build "static" files with cftree, save them as HTML and be done with it. - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 30, 2001 8:37 PM Subject: Re: CFTREE was Re: REPOST Old Ja

Re: CFTREE was Re: REPOST Old Java controls with CF 5.0?

2001-08-30 Thread phumes1
I came across the same problem doing a editor interface. We have hundreds of files/directories and the java applet was just unusable. I had to stop the applet after 40 minutes!. At 10:46 PM 8/30/2001 -0400, you wrote: >Ok so since no one has answered this question, I am stuck with using CF 4.

RE: CFTree substitute?

2001-06-07 Thread Thomas Chiverton
> Without serious modifications it must be run in a frame. Its only changing the targets for the links. > would love to see > an example of it in a non-frame environment. If I didnt work on a closed LAN I would :-) ~~ Structure your ColdFusion

Re: CFTree substitute?

2001-06-07 Thread David E. Crawford
- From: "Thomas Chiverton" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, June 07, 2001 05:46 Subject: RE: CFTree substitute? > > You can try the Joust control, > > ... It must be run in a frame > > Err... no. > >

RE: CFTree substitute?

2001-06-07 Thread Thomas Chiverton
> I dont recall where I actually found it though. Looks like the Netscape DHTML demo one. I dont use it because it doesnt indent the levels. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bk

RE: CFTree substitute?

2001-06-07 Thread Thomas Chiverton
> You can try the Joust control, > ... It must be run in a frame Err... no. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseo

RE: CFTree substitute?

2001-06-06 Thread Duane Boudreau
01 3:21 PM To: CF-Talk Subject: Re: CFTree substitute? You can try the Joust control, as shown in the WDDX SDK. I have implemented it and it is cross-browser DHTML. It must be run in a frame however. There may be other Java tree controls out there as well. DC - Original Message - Fr

Re: CFTree substitute?

2001-06-06 Thread David E. Crawford
gt; To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 13:29 Subject: RE: CFTree substitute? > Yes, both platforms. > > On Wed, 6 Jun 2001, Michael Rosario wrote: > > > What platforms do you have to support? IE and Netscape? > > > > -Origin

RE: CFTree substitute?

2001-06-06 Thread Aaron Rouse
Yes, both platforms. On Wed, 6 Jun 2001, Michael Rosario wrote: > What platforms do you have to support? IE and Netscape? > > -Original Message- > From: Aaron Rouse [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 06, 2001 10:21 AM > To: CF-Talk > Subject: CFTree substitute? > > >

RE: CFTree substitute?

2001-06-06 Thread Michael Rosario
What platforms do you have to support? IE and Netscape? -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 06, 2001 10:21 AM To: CF-Talk Subject: CFTree substitute? Are there any other options out there that give the same functionality as CFTree? I

RE: CFTREE and SSL

2001-06-06 Thread Semrau, Steven L Mr SRA
Yes, the previous version of a site we are re-designing was using CFTREE successfully with SSL. Steven Semrau SRA International, Inc. Senior Member, Professional Staff [EMAIL PROTECTED] [EMAIL PROTECTED] Com: (703) 805-1095 DSN: (703) 655-1095 -Original Message- From: Joseph Thompson

RE: CFTree substitute?

2001-06-06 Thread Semrau, Steven L Mr SRA
Check out the Joust Menu System at http://www.ivanpeters.com/ I have used it to completely replace the CFTREE Steven Semrau SRA International, Inc. Senior Member, Professional Staff [EMAIL PROTECTED] [EMAIL PROTECTED] Com: (703) 805-1095 DSN: (703) 655-1095 -Original Message- From: A

RE: cftree/cfform problem...

2001-02-07 Thread Aaron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Daniel, I'm guessing that on your dev server you have a virtual directory mapping for /cfide/ and on your live server you don't. The java class files need for the cftree controls are in the /cfide/classes folder on the webserver. Your client wil

Re: CFTREE Replacement

2001-01-04 Thread Joseph Thompson
http://www.ivanpeters.com/ This looks promising... - Original Message - From: "David E. Crawford" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, January 04, 2001 7:35 AM Subject: CFTREE Replacement > I am looking for a DHTML based replacement for CFTREE that is a

Re: CFTREE Replacement

2001-01-04 Thread Dick Applebaum
Dave Have a look at the Joust outliner at: http://www.ivanpeters.com/index.htm?page=/joust/ HTH Dick At 10:35 AM -0500 1/4/01, David E. Crawford wrote: >I am looking for a DHTML based replacement for CFTREE that is as >"plug and pray" as possible. Any suggestions? > >Thanks. > >Dave ~

RE: CFTree on runtime population...

2000-11-09 Thread Eric Fickes
To: CF-Talk Cc: '[EMAIL PROTECTED]' Subject: RE: CFTree on runtime population... > Hello, I'm populating CFTree with data from a huge database. > My problem is that I don't want to do it all at once, just > because it takes too much time (I have to read all the data &g

RE: CFTree on runtime population...

2000-11-09 Thread Dave Watts
> Hello, I'm populating CFTree with data from a huge database. > My problem is that I don't want to do it all at once, just > because it takes too much time (I have to read all the data > from database). What I want to do is to read only the data > needed for a branch of tree that is populated

Re: CFTREE Error

2000-10-19 Thread pan
From: "Mike Connolly" <[EMAIL PROTECTED]> > This error appears > > ' Applet allaire.controls.CfTreeFormApplet class > allaire.controls.CfTreeFormApplet could not be loaded ' > > when attempting to access a CF page with a CFTREE. > > Anyone any ideas? > You're running a template from a virt

RE: CFTREE Error

2000-10-19 Thread Gavin Myers
In order to run CFTRee do you need to download that CAB file that is default required on cfforms? -Original Message- From: Mike Connolly [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 19, 2000 8:53 AM To: CF-Talk Subject: RE: CFTREE Error We looked down the route already, any other

RE: CFTREE Error

2000-10-19 Thread Mike Connolly
We looked down the route already, any other possible causes? > -Original Message- > From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] > Sent: 19 October 2000 14:29 > To: CF-Talk > Subject: RE: CFTREE Error > > I seem to recall a similar error that we trace

RE: CFTREE Error

2000-10-19 Thread Scott J. Brader
I seem to recall a similar error that we traced to browser security. The user had disallowed the java class and the tree generated an error. Scott -Original Message- From: Mike Connolly [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 19, 2000 8:32 AM To: CF-Talk Subject: CFTREE Error

RE: CFTREE Image problem Take 2

2000-08-28 Thread Dave Watts
> Still no good. I can reach the image via the web and see > both open and closed folder images. I even tried the > authenticated users but that didn't work. My customers site > is public and IUSR has the correct permissions. This is > getting crazy! Any other ideas that we are missing. Could

Re: CFTREE Image problem Take 2

2000-08-28 Thread pan
> Still no good. I can reach the image via the web and see both open and > closed folder images. I even tried the authenticated users but that didn't > work. My customers site is public and IUSR has the correct permissions. > This is getting crazy! Any other ideas that we are missing. Could

Re: CFTREE Image problem Take 2

2000-08-28 Thread Neil H.
be a required mapping or something else I just can't think of? Thanks for all the help Neil - Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, August 28, 2000 11:48 AM Subject: R

RE: CFTREE Image problem Take 2

2000-08-28 Thread Dave Watts
> I have made the Classes directory security to change for the > IUSR and I even tried moving the images into the system32 > directory. Now I am stumped?! Why don't you try this: 1. Make sure that you can resolve the path with a browser: http://www.yoursite.com/CFIDE/Classes/images/folderopen

Re: CFTREE Image problem Take 2

2000-08-28 Thread Neil H.
Cc: <[EMAIL PROTECTED]> Sent: Monday, August 28, 2000 9:37 AM Subject: RE: CFTREE Image problem Take 2 > > I have the files but one of my customers sites doesn't > > show the images?! I had NTLM enabled on the CFIDE directory > > (which we learned about in CFUG for adm

  1   2   >