RE: Is this possible with component methods in cf8?

2009-09-16 Thread Rick Faircloth
Thanks for the insight, Tony! This particular app will usually be handling 10 or less images at a time. Rick -Original Message- From: Tony Bentley [mailto:t...@tonybentley.com] Sent: Wednesday, September 16, 2009 2:11 PM To: cf-talk Subject: Re: Is this possible with component methods

Re: Is this possible with component methods in cf8?

2009-09-16 Thread Tony Bentley
I suggested using the zipped folder method as an option to handle the issue of getting more than a few images to upload at a time. Facebook allows the user to upload all of the images in one go, then the user manages each image's description, title and tags after the images have been uploaded a

RE: Is this possible with component methods in cf8?

2009-09-15 Thread Nathan Chen
Dave, you mentioned about checking virus on the uploaded files on No.4 below. How do you do that, via virus program on the server? Nathan -Original Message- From: Dave l [mailto:cfl...@jamwerx.com] Sent: Monday, September 14, 2009 2:37 PM To: cf-talk Subject: Re: Is this possible with

RE: Is this possible with component methods in cf8?

2009-09-15 Thread Rick Faircloth
od? Rick -Original Message- From: Dave l [mailto:cfl...@jamwerx.com] Sent: Monday, September 14, 2009 8:29 PM To: cf-talk Subject: Re: Is this possible with component methods in cf8? What if the images have other data that go with them like descriptions? Just as easily you could first

Re: Is this possible with component methods in cf8?

2009-09-14 Thread Dave l
What if the images have other data that go with them like descriptions? Just as easily you could first make a temp folder with a uuid or session as the name and dump them in there without having to zip them. If you have more than just the picture such as a description or other data then multi u

Re: Is this possible with component methods in cf8?

2009-09-14 Thread Dave l
You can't send back multiple returns in same method but you can just output the data which is what the flash part is looking for and it reports it back to ajax script as many times as you need, doesn't matter if it is once or 1000. Or you can loop over the method and grab each return and send i

Re: Is this possible with component methods in cf8?

2009-09-14 Thread Dave l
"What issues and limitations exactly? Had no problems using jQuery with it - though that uploadify looks like a better js implementation for sure." There is no issues it's just not as "clean". It's also harder to control the data coming back. I just went through most all the ajax uploads and thou

Re: Is this possible with component methods in cf8?

2009-09-14 Thread Tony Bentley
Another option is to use a zip utility to handle more than one image. This can allow for as many files as you want. Simply upload one zipped folder and then do a recursive loop inside of the zipped folder to grab all of the images. ~~

Re: Is this possible with component methods in cf8?

2009-09-14 Thread Dominic Watson
No, your cfc method won't be able to send back multiple returns. Instead, the flash uploader will upload the files one at a time to your CFC but your user will have the experience of sending them all at once. You will be able to customize progress reports as the flash object will publish javascrip

RE: Is this possible with component methods in cf8?

2009-09-14 Thread Rick Faircloth
ot; javascript or cfscript? I guess it's got to be cfscript with "createObject..." in it? Rick -Original Message- From: Dave l [mailto:cfl...@jamwerx.com] Sent: Monday, September 14, 2009 4:37 PM To: cf-talk Subject: Re: Is this possible with component methods in cf8? oh

Re: Is this possible with component methods in cf8?

2009-09-14 Thread Dominic Watson
> swfupload is ok but has some issues and limitations and it's not jquery which makes interacting with it a bit more difficult. What issues and limitations exactly? Had no problems using jQuery with it - though that uploadify looks like a better js implementation for sure. Dominic 2009/9/14 Dav

Re: Is this possible with component methods in cf8?

2009-09-14 Thread Dave l
oh no! swfupload is ok but has some issues and limitations and it's not jquery which makes interacting with it a bit more difficult. I'm making a fairly sweet uploader in jquery and ended up using uploadify as the base uploader but I alter the source code. As far as the original question as t

RE: Is this possible with component methods in cf8?

2009-09-14 Thread Rick Faircloth
AM To: cf-talk Subject: Re: Is this possible with component methods in cf8? This is a pretty common issue with file upload and processing. I suggest using either a Java or Flash based file uploader that offers a status for each file. the asfusion one is a good example of how you can upload and pr

Re: Is this possible with component methods in cf8?

2009-09-14 Thread Tony Bentley
This is a pretty common issue with file upload and processing. I suggest using either a Java or Flash based file uploader that offers a status for each file. the asfusion one is a good example of how you can upload and process each image. Once the image is uploaded and the script is run to resi

Re: Is this possible with component methods in cf8?

2009-09-13 Thread denstar
If you have the files in a loopable deal, I don't see why you couldn't loop over them, outputting the current index, and doing a cfflush after each iteration? It's corny and easy and not ajaxy, but theoretically workable. -- There is nothing in which the birds differ more from man than the way

RE: Is this possible with component methods in cf8?

2009-09-12 Thread Jason Durham
I don't see why you can't do this. However, the detailed answer on "how to" do this depends on countless variables. Here is a high level suggestion... === User submits form and is directed to "update status" page An object is created for each of the image

RE: Is this possible with component methods in cf8?

2009-09-12 Thread Rick Faircloth
Thanks, Dominic...I'll check out the Flash recommendation. Rick -Original Message- From: Dominic Watson [mailto:watson.domi...@googlemail.com] Sent: Saturday, September 12, 2009 6:22 AM To: cf-talk Subject: Re: Is this possible with component methods in cf8? Looks like ajax

Re: Is this possible with component methods in cf8?

2009-09-12 Thread Dominic Watson
en triggers the first to process another photo, etc., until all the > photos were processed. > > I don't know...just trying to think of a way to get this done using > component > methods or even another way. > > Rick > > > -Original Message- > From: Barn

Re: Is this possible with component methods in cf8?

2009-09-12 Thread Dominic Watson
+1 To Barney. I've used a flash multi uploader and it works like a dream: http://swfupload.org/ Dominic 2009/9/12 Barney Boisvert > > You can't send anything back to the user until all the photos are > uploaded, but once that's done, you can just leave them on disk, > record the fact that the

RE: Is this possible with component methods in cf8?

2009-09-12 Thread Rick Faircloth
y Boisvert [mailto:bboisv...@gmail.com] Sent: Saturday, September 12, 2009 12:54 AM To: cf-talk Subject: Re: Is this possible with component methods in cf8? You can't send anything back to the user until all the photos are uploaded, but once that's done, you can just leave them on disk, r

Re: Is this possible with component methods in cf8?

2009-09-11 Thread Barney Boisvert
You can't send anything back to the user until all the photos are uploaded, but once that's done, you can just leave them on disk, record the fact that they're there in session scope, and return a response after kicking off a background thread to process the images. That background thread should u

Re: Is this possible - and the best way possible

2008-05-17 Thread Toby King
>That is definitely possible and the method of display you suggested >seems good to me. A graph would be a nice touch. The decision of how >best to display the data might rest with the person who has to view >it. > >-Mike Chabot > >On Sat, May 17, 2008 at 10:34 PM, Toby King <[EMAIL PROTECTED]> wro

Re: Is this possible - and the best way possible

2008-05-17 Thread Mike Chabot
That is definitely possible and the method of display you suggested seems good to me. A graph would be a nice touch. The decision of how best to display the data might rest with the person who has to view it. -Mike Chabot On Sat, May 17, 2008 at 10:34 PM, Toby King <[EMAIL PROTECTED]> wrote: > Hi

RE: Is This Possible??

2007-10-15 Thread William Seiter
y, October 15, 2007 7:50 AM To: CF-Talk Subject: Re: Is This Possible?? Hi Kris, First I would like to thank you for responding to my post, it is greatly appreciated. I will try to answer your questions in the order you presented them. Q1 - The ultimate goal of this project is to display a l

Re: Is This Possible??

2007-10-15 Thread Kris Jones
Hi Leonard, Something along the lines of this may work. I'm sure you'll need to tweak it a bit depending on your RDBMS and other requirements. SELECT t.trng_code, t.trng_title, c.trng_status FROM tbl_training_calendar t LEFT OUTER JOIN tbl_training_completed c ON c.trng_code=t.trng_code INNER JOI

Re: Is This Possible??

2007-10-15 Thread Ian Skinner
What you are looking for here is an outer join. An outer join says select all the records from one table and any records from a second table, if they match. If there is no match the column from the second table it will contain a NULL value. Thus your employees who have not completed a specif

Re: Is This Possible??

2007-10-15 Thread Leonard Boche
Hi Kris, First I would like to thank you for responding to my post, it is greatly appreciated. I will try to answer your questions in the order you presented them. Q1 - The ultimate goal of this project is to display a listing of the annual training calendar and show what training a given employe

Re: Is This Possible??

2007-10-15 Thread Leonard Boche
Hi Kris, First I would like to thank you for responding to my post, it is greatly appreciated. I will try to answer your questions in the order you presented them. Q1 - The ultimate goal of this project is to display a listing of the annual training calendar and show what training a given employe

Re: Is This Possible??

2007-10-15 Thread Leonard Boche
Hi Kris, First I would like to thank you for responding to my post, it is greatly appreciated. I will try to answer your questions in the order you presented them. Q1 - The ultimate goal of this project is to display a listing of the annual training calendar and show what training a given employe

Re: Is This Possible??

2007-10-14 Thread Azadi Saryev
without knowing your type of rdbms used, exact data schema and how your 3 tables are linked to each other it is not possible to give you an exact solution. but in general, i would suspect that you will need to INNER JOIN your training and emplyoees tables and LEFT OUTER JOIN your employees tabl

Re: Is This Possible??

2007-10-14 Thread Kris Jones
Leonard, There are a lot of ways to accomplish this. What are you trying to do? Are you trying to get the answer in a single query? What is your expected output? Do you have other schema info? What are the PK & FKs in each table? More info is needed to answer your question. Cheers, Kris On 10/14

Re: Is this possible

2005-10-27 Thread Bryan Stevenson
Anything is possibleand this sure falls into that category ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com ~

Re: Is this possible

2005-10-27 Thread Sam Farmer
It sounds like you already have next Monday worked out after that do something like this: #dateAdd("ww",variables.ii,variables.firstMonday)# Cheers, Sam On 10/27/05, Kurt Kaptein <[EMAIL PROTECTED]> wrote: > > > I need quick advice on if this is possible. > > I need to have the users put in a

RE: Is this possible

2005-10-27 Thread Robertson-Ravo, Neil (RX)
Yes, it is. -Original Message- From: Kurt Kaptein [mailto:[EMAIL PROTECTED] Sent: 27 October 2005 15:01 To: CF-Talk Subject: Is this possible I need quick advice on if this is possible. I need to have the users put in a ship date on an ecommerce site The first one will be next Mon

RE: Is this possible?

2005-05-31 Thread Che Vilnonis
Dave, that places it 'inline'. How about a floating DHTML/Javascript window? -Original Message- From: Dave Francis [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 31, 2005 12:25 PM To: CF-Talk Subject: RE: Is this possible? This works (in IE - didn't test any others)

RE: Is this possible?

2005-05-31 Thread Dave Francis
This works (in IE - didn't test any others) -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 31, 2005 11:59 AM To: CF-Talk Subject: RE: Is this possible? ugh, that sounds like fun. :( -Original Message- From: Burns, John D [mailto:[

RE: Is this possible?

2005-05-31 Thread Che Vilnonis
ugh, that sounds like fun. :( -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 31, 2005 11:49 AM To: CF-Talk Subject: RE: Is this possible? You'd probably have to write your own tag to simulate the . The original does a bunch of tag closing and

RE: Is this possible?

2005-05-31 Thread Burns, John D
You'd probably have to write your own tag to simulate the . The original does a bunch of tag closing and stuff to make sure it's not in any sort of unfinished table or whatever. The rest should be easy. John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Develo

Re: Is this possible with CSS

2005-04-28 Thread Andy Jarrett
wrote: > Here a good resource. > http://css-discuss.incutio.com/?page=ThreeColumnLayouts > <http://www.ftponline.com/reports/wdwsf/2005/bowman1/> > > -Original Message- > From: Connie DeCinko [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 27, 2005 1:35 PM >

RE: Is this possible with CSS

2005-04-27 Thread Robert Redpath
Here a good resource. http://css-discuss.incutio.com/?page=ThreeColumnLayouts <http://www.ftponline.com/reports/wdwsf/2005/bowman1/> -Original Message- From: Connie DeCinko [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 1:35 PM To: CF-Talk Subject: RE: Is this possibl

RE: Is this possible with CSS

2005-04-27 Thread Sandy Clark
I tend to use Skiddo Lean for my 3 col header/footer layouts. Very cross browser compatible http://webhost.bridgew.edu/etribou/layouts/ -Original Message- From: Andy Jarrett [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 12:21 PM To: CF-Talk Subject: OT: Is this possible with

RE: Is this possible with CSS

2005-04-27 Thread DURETTE, STEVEN J \(AIT\)
To: CF-Talk Subject: RE: Is this possible with CSS Making the page 100% height is tough and each browser interprets that differently. You need to tell the page 100% of what? In my case I had to add height 100% to the body tag as well. -Original Message- From: Andy Jarrett [mailto

RE: Is this possible with CSS

2005-04-27 Thread Connie DeCinko
Making the page 100% height is tough and each browser interprets that differently. You need to tell the page 100% of what? In my case I had to add height 100% to the body tag as well. -Original Message- From: Andy Jarrett [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 27, 2005 9:21

RE: Is this possible with CSS

2005-04-27 Thread Ian Skinner
This depends on many other factors, such as colorization of the columns. But to get a basic layout, before color is considered you can do this: This will give you the basic layout you request, where the footer will always be below the longest div. But if you want to also color the side co

RE: Is this possible with CSS

2005-04-27 Thread Damien McKenna
http://www.pixy.cz/blogg/clanky/css-3col-layout/ -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include > -Original Message- > From: Andy Jarrett [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 27, 2005 12:21

RE: Is this possible with CSS

2005-04-27 Thread COLLIE David
> I am having a nightmare trying to replicate a 3 column site > with CSS - it nearly make me want to use 's (did i say > that out loud) This page should get you started! Best CSS list I've came across. http://css-discuss.incutio.com/?page=ThreeColumnLayouts HTH -- David ~~

RE: Is this possible in SQL

2004-08-12 Thread Bryan Love
Join the tables together so they are treated like a single table...(assuming they are join-able) SELECT c.categoryid, sc.sub_CategoryId FROM categories c, sub_category sc WHERE c.categoryID = sc.categoryID AND (c.category = '#form.searchVal#' OR sc.sub_Category = '#form.searchVal#') LIMIT 1 +

Re: Is this possible in SQL

2004-08-10 Thread Andy Jarrett
Cheers Matt, Worked a charm >I have two tables which I want to query at the same time. I'm thinking >something along the lines of > >SELECT c.categoryid, sc.sub_CategoryId >FROM categories c, sub_category sc >WHERE c.category = '#form.searchVal#' OR sc.sub_Category = >'#form.searchVal#' >LIMIT

RE: Is this possible in SQL

2004-08-09 Thread Matthew Walker
Have you tried union? SELECT. UNION SELECT.   _   From: Andy J [mailto:[EMAIL PROTECTED] Sent: Tuesday, 10 August 2004 11:22 a.m. To: CF-Talk Subject: Is this possible in SQL I have two tables which I want to query at the same time. I'm thinking something along the lines of SELECT c.ca

Re: Is this possible with CFMX or BD?

2004-08-08 Thread Dick Applebaum
ld be very useful to be able to invoke CF templates in this way >  Jim Davis > >  From: Sean Corfield [mailto:[EMAIL PROTECTED] >  Sent: Sunday, August 08, 2004 12:18 AM >  To: CF-Talk >  Subject: Re: Is this possible with CFMX or BD? > >  Blackstone provides an event gateway

RE: Is this possible with CFMX or BD?

2004-08-07 Thread Jim Davis
l take the initiative and wrap the calls you mention into a nice little COM or NET wrapper so that I can script server events via WSH and _javascript_.  ;^) Jim Davis From: Sean Corfield [mailto:[EMAIL PROTECTED] Sent: Sunday, August 08, 2004 12:18 AM To: CF-Talk Subject: Re: Is this possible with

Re: Is this possible with CFMX or BD?

2004-08-07 Thread Dick Applebaum
On Aug 7, 2004, at 9:17 PM, Sean Corfield wrote: > On Sat, 7 Aug 2004 20:11:08 -0400, Jim Davis >  <[EMAIL PROTECTED]> wrote: >  > In the MX world things aren't that simple.  You can't just call a > template >  > from the command line like you used to.  However you can still call > CF >  > Templ

Re: Is this possible with CFMX or BD?

2004-08-07 Thread Sean Corfield
On Sat, 7 Aug 2004 20:11:08 -0400, Jim Davis <[EMAIL PROTECTED]> wrote: > In the MX world things aren't that simple.  You can't just call a template > from the command line like you used to.  However you can still call CF > Templates via the web server (as always) - and there's a few tools that let

Re: Is this possible with CFMX or BD?

2004-08-07 Thread Dick Applebaum
Thanks Jim That gets me pointed in the right direction ... little browsers... on the desktop... little browsers, made of ticky-tacky... (paraphrasing an old Malvina Reynolds song) I was trying to figure out what the webserver (apache) connector was doing. But these little browsers are OK --

RE: Is this possible with CFMX or BD?

2004-08-07 Thread Jim Davis
In the pre-mx work you could do this by passing the template to the CF Executable (something like "cfserver.exe /myTemplate.cfm", but I forget the exact syntax).  And you're right - it was very useful.  ;^) In the MX world things aren't that simple.  You can't just call a template from the command

RE: Is this possible? was mediaPlayer

2004-07-20 Thread cfhelp
This was my thought I am just not sure how to read the MP3 file. Isn't there a file header that contains all the info on the file Artist, Song, Date, time and so on? I also think that Flash would be a better in this situation. Go look at http://www.rush.com/   and click on Rush Radio. That is e

Re: Is this possible? was mediaPlayer

2004-07-20 Thread Joe Rinehart
It's doubleplus hackish, but could you use something to read the duration of the mp3, then use _javascript_ to have the parent window refresh the other window to the next song after that many seconds, plus a few for padding/load time? -joe [Todays Threads] [This Message] [Subscription] [Fas

Re: Is this possible? was mediaPlayer

2004-07-20 Thread Bryan Stevenson
So no BODY tag whatsoever in the popup? That aside...someone else mentioned Flash...I would most definately build something like this in Flash...way more control and could also be built as a projector for standalone use (no browser required). Cheers Bryan Stevenson B.Comm. VP & Director of E-Com

Re: Is this possible? was mediaPlayer

2004-07-20 Thread Dick Applebaum
On Jul 20, 2004, at 8:13 AM, Bryan Stevenson wrote: > hmmm.,.. > >  Have you tried running JS onUnLoad? > >  Bryan Stevenson B.Comm. > That sounds good, except the content of the popup is an mp3, served with   value="attachment; filename=song.mp3"> file=#FilePath# deletefile = "No"

Re: Is this possible? was mediaPlayer

2004-07-20 Thread Bryan Stevenson
hmmm.,.. Have you tried running JS onUnLoad? Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]   - Original Message -   From: Dick Applebaum   To: CF-Talk   Sent: Tuesday, July 20, 2004 8:06 AM   Subje

Re: Is this possible in HTML?

2004-03-23 Thread MILAN MUSHRAN
Thanks to all of you !! >From: "Pete Ruckelshaus" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: Re: Is this possible in HTML? >Date: Tue, 23 Mar 2004 08:40:43 -0500 > >If it's straight HTML and you have

RE: Is this possible in HTML?

2004-03-23 Thread Hugo Ahlenius
us [mailto:[EMAIL PROTECTED] | Sent: Tuesday, March 23, 2004 14:41 | To: CF-Talk | Subject: Re: Is this possible in HTML? | | If it's straight HTML and you have no ability to employ | Server Side Includes, you can use a linked _javascript_ file. | I wrote a little utility that makes it easy t

Re: Is this possible in HTML?

2004-03-23 Thread Pete Ruckelshaus
If it's straight HTML and you have no ability to employ Server Side Includes, you can use a linked _javascript_ file.  I wrote a little utility that makes it easy to turn straight HTML into JS: document.write('#jsstringformat(trim(i))#'); #converted_js# #converted_js#   Enter the HTM

Re: Is this possible in HTML?

2004-03-23 Thread Nick de Voil
> Do a google search on 'Server Side Includes'.  You should get a wealth of > information on it. Or from a client-side perspective, there are many possibilities with ,

Re: Is this possible in HTML?

2004-03-23 Thread Ray Champagne
Do a google search on 'Server Side Includes'.  You should get a wealth of information on it. Ray http://www.crystalvision.org At 08:25 AM 3/23/2004, MILAN MUSHRAN wrote: >Can i have an equivalent of "cfinclude" in a HTML file? > >Thanks, >Milan > > > > [Todays Threads] [This Message] [Subsc

Re: is this possible? the css dilema

2003-07-24 Thread Jochem van Dieten
Dave Lyons wrote: > > given the fact that most browsers render flash the same right? > would it be possible to make a cfm site as normal but be able to import it into a > flash front end to display it? Sure. > im sure there would be some issues but i think it would be really cool. You wouldnt

Re: is this possible? the css dilema

2003-07-23 Thread jon hall
I would agree, and that's why I think Royale will be a big hit. http://www.macromedia.com/special/royale/ -- jon mailto:[EMAIL PROTECTED] Wednesday, July 23, 2003, 7:38:30 PM, you wrote: DL> this talk about css and broswers had me thinking. DL> is it within the realm of flash mx to do this o

RE: Is this Possible? (cfhttp)

2002-07-08 Thread Eric Hoffman
Hoffman Head Tech Geek DataStream Connexion www.datastreamconnexion.com Delivering Creative Data Solutions -Original Message- From: Justin Scott [mailto:[EMAIL PROTECTED]] Sent: Monday, July 08, 2002 9:32 AM To: CF-Talk Subject: Re: Is this Possible? (cfhttp) > The returned info from cfh

Re: Is this Possible? (cfhttp)

2002-07-08 Thread Justin Scott
> The returned info from cfhttp call has basically some lines of code per > "headline" which is actually streaming audio info...can it be broken up > somehow elegantly to only get, say last 8 of them.not so easy when > its not a db query! Are the number of "lines of code" per headline always

Re: Is this possible to do?

2002-06-04 Thread Dave Carabetta
>My original code removed all irrelevant values from the Form structure. >But I thought it's probably not worth it, as long as you have numeric >ID's in the DB, and none of the irrelevant form fields are NAME'd with >numbers that could accidentally correspond to DB ID's... > >Actually, thinking ab

Re: Is this possible to do?

2002-06-04 Thread Gyrus
- Original Message - From: "Tony Carcieri" <[EMAIL PROTECTED]> But this would also include the form field SUBMIT which, obviously, isn't part of the DB. Right? --- My original code removed all irrelevant values from the Form structure. But I thought it's probably n

RE: Is this possible to do?

2002-06-04 Thread Tony Carcieri
But this would also include the form field SUBMIT which, obviously, isn't part of the DB. Right? -Original Message- From: Gyrus [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 11:18 AM To: CF-Talk Subject: Re: Is this possible to do? - Original Message - From:

Re: Is this possible to do?

2002-06-04 Thread Gyrus
- Original Message - From: "Tony Carcieri" <[EMAIL PROTECTED]> --snip-- UPDATE mytable SET IsDeleted = 1 WHERE ID = '#form.ID#' --- You're submitting a form with one or more checkboxes checked to delete, yeah? Try using the 'form.fieldnames' val

RE: Is this possible to do?

2002-06-04 Thread Andy Ousterhout
One way to do this would be to build a list of the ID's that are to be deleted then use WHERE ID in (#lstIDs#) Andy -Original Message- From: Tony Carcieri [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 9:57 AM To: CF-Talk Subject: Is this possible to do? Hi gang, Here's my s

RE: Is this possible to do?

2002-06-04 Thread Tony Carcieri
That might do it. When I select more than one, the value then becomes 1,2,4,5. By using IN, it should work? Thanks Critz! -Original Message- From: Critz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 11:02 AM To: CF-Talk Subject: Re: Is this possible to do? oi Tony!! where

Re: Is this possible to do?

2002-06-04 Thread Critz
oi Tony!! where id in (#form.id#) ? that what yer talkin bout? -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - Tuesday, June 4, 2002, 10:57:01 AM, you wrote: TC> Hi gang, TC> Here's my situation. Let's say I have a query that returns...5 recor

RE: Is this possible?

2002-05-24 Thread Jeff Garza
You can use the onclick event handler for the table and execute a location.href javascript call. This should work in IE and Netscape 6.x. I think you might be out of luck with Netscape 4.x. Might also try wrapping the table in a div and setting the onclick handler for the div instead. HTH, Je

Re: Is this possible?

2002-05-24 Thread Alex
Not sure what you mean "everything". But if you look on google you will get your answer. On Fri, 24 May 2002, Douglas Brown wrote: > I was wondering if their was a way of making the contents of a table a > link, not just the text or graphics, but everything in the table. > > > > > Douglas Br

Re: is this possible?

2002-03-09 Thread David Schmidt
Jeff, Just pass the list from one release to the next using hidden form fields, along with an index number for the next name. You will actually only have to write this one time, so you can just keep going back to this same release for each of the 8 people. Plus, you never have to worry about be

Re: is this possible?

2002-03-09 Thread nagraj
Hi Jeff, Yes It is posssible.If you know that there are 8 elements and keep track of how to show.Then it is possible. Once the 8 variables are finished then you divert the submission to original page.Till that you will be revolving in same page with different variables requesting. Cheers! Rega

RE: Is this possible!!

2001-11-25 Thread Andrew Scott
the wrong one I was hoping that CF could lock this from ever happening. Maybe a com object to maintain the variables would be better!! -Original Message- From: David Schmidt [mailto:[EMAIL PROTECTED]] Sent: Monday, 26 November 2001 1:37 AM To: CF-Talk Subject: RE: Is this possible!!

RE: Is this possible!!

2001-11-25 Thread David Schmidt
- From: Andrew Scott [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 24, 2001 3:53 PM To: CF-Talk Subject: RE: Is this possible!! Thanks, I thought of new this but wasn't sure if CF 5.0 had something as I haven't really got stuck into its new features yet!! -Original Messa

RE: Is this possible!!

2001-11-24 Thread Andrew Scott
Thanks, I thought of new this but wasn't sure if CF 5.0 had something as I haven't really got stuck into its new features yet!! -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Sunday, 25 November 2001 1:24 AM To: CF-Talk Subject: Re: Is this possib

RE: Is this possible?

2001-07-06 Thread Craig Dudley
s.basedir##name#"); --- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 05 July 2001 19:59 To: CF-Talk Subject: Re: Is this possible? I have a directory tree listing. For example, d:\ test1 |- subdir1 |- subdir2 test2 |- subdir1 |- subdir2 test3 |

Re: Is this possible?

2001-07-05 Thread phumes1
I have a directory tree listing. For example, d:\ test1 |- subdir1 |- subdir2 test2 |- subdir1 |- subdir2 test3 |- temp1 |- temp2 test4 Above this I have a http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubsc

RE: Is this possible?

2001-03-26 Thread Terri Stocke
L PROTECTED]> Reply-To: [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> Subject: RE: Is this possible? Date: Mon, 26 Mar 2001 16:21:24 +0100 what Terri could so is query the DB on loading the page, then validate the answers with a simple JS function. function Check_Items(Item1,Item2)

RE: Is this possible?

2001-03-26 Thread Jason Lees (National Express)
Just done some refining of the code. This will work, as long as you are holding the validation results in a Query. THe previosu version doesn't work because I was assuming that Item2 was an object, but its not its a literal. function Check_Items(Item1,Item2){ if (Item1.value!='')

RE: Is this possible?

2001-03-26 Thread Jason Lees (National Express)
TED]] Sent: 26 March 2001 16:00 To: CF-Talk Subject: RE: Is this possible? But Terri wants to compare the client-side form element values to what's in the db. In order to do this, she'll have to get the db info into JS. She could query for the data and then convert it to JS via C

RE: Is this possible?

2001-03-26 Thread David Shadovitz
But Terri wants to compare the client-side form element values to what's in the db. In order to do this, she'll have to get the db info into JS. She could query for the data and then convert it to JS via CFWDDX ACTION=CFML2JS. -David On Monday, March 26, 2001 6:40 AM, Dylan Bromby [SMTP:[EMAI

RE: Is this possible?

2001-03-26 Thread Terri Stocke
Thanks, Dylan. That gives me a direction to go in. I'll look this up. Thanks! Original Message Follows From: "Dylan Bromby" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> Subject: RE: Is this possible? Date: Mon, 26 Mar 2001

RE: Is this possible?

2001-03-26 Thread Dylan Bromby
yes you can do this. you can reference the form elements by object name. you don't have to submit the form to validate or check values. you can do it using onFocus and/or onBlur. -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent: Monday, March 26, 2001 6:34 AM To: CF-T

RE: Is this possible w/CF??? (thinking aloud)

2000-11-20 Thread Eric Dawson
TED] To: CF-Talk <[EMAIL PROTECTED]> Subject: RE: Is this possible w/CF??? Date: Mon, 20 Nov 2000 11:02:37 -0500 It wouldnt, im a goof :-) Jeremy Allen ElliptIQ Inc. -Original Message- From: Rif Kiamil [mailto:[EMAIL PROTECTED]] Sent: Monday, November 20, 2000 9:51 AM To: CF-Talk Subject

RE: Is this possible w/CF???

2000-11-20 Thread Jeremy Allen
It wouldnt, im a goof :-) Jeremy Allen ElliptIQ Inc. -Original Message- From: Rif Kiamil [mailto:[EMAIL PROTECTED]] Sent: Monday, November 20, 2000 9:51 AM To: CF-Talk Subject: RE: Is this possible w/CF??? If u where going to uses a Triggers, how would it know the UserID ? >Fro

RE: Is this possible w/CF???

2000-11-20 Thread Jeremy Allen
*nods* It was just a suggestion :-) -Original Message- From: JustinMacCarthy [mailto:[EMAIL PROTECTED]] Sent: Monday, November 20, 2000 10:07 AM To: CF-Talk Subject: RE: Is this possible w/CF??? >Assuming this is not an Access database, one way >to make things a bit more effeci

RE: Is this possible w/CF???

2000-11-20 Thread Rif Kiamil
If u where going to uses a Triggers, how would it know the UserID ? >From R -Original Message- From: Jeremy Allen [mailto:[EMAIL PROTECTED]] Sent: 20 November 2000 14:26 To: CF-Talk Subject: RE: Is this possible w/CF??? Just to toss a little more to this suggestion. Assuming this

RE: Is this possible w/CF???

2000-11-20 Thread JustinMacCarthy
>Assuming this is not an Access database, one way >to make things a bit more effecient is to use >Stored Procedures to perform all of the actual >logging. :-) (Triggers:) Only problem with that idea is, it's probably the same user modifying the data each time (CF odbc source).. J ~

RE: Is this possible w/CF???

2000-11-20 Thread Jeremy Allen
Just to toss a little more to this suggestion. Assuming this is not an Access database, one way to make things a bit more effecient is to use Stored Procedures to perform all of the actual logging. :-) (Triggers:) Then just use CF to figure out how to reconstruct and assemble the interface to

RE: Is this possible w/CF???

2000-11-20 Thread Gilles Ratte
I would create a login screen ... then I would simply add a field in the database where the changes needs to be made and insert the login name (as an example) in my update or insert query > -Message d'origine- > De: Jeff Fongemie [SMTP:[EMAIL PROTECTED]] > Date: Monday, November 20, 200

RE: Is this possible w/CF???

2000-11-20 Thread Andy Ewings
]] Sent: 20 November 2000 14:38 To: CF-Talk Subject: Re: Is this possible w/CF??? Well what I would do is set a session variable like session.user and then have a record in the DB called LastModifiedBy and have a hidden field on the form and make its value the session.user variable and then when you

RE: Is this possible w/CF???

2000-11-20 Thread Jeremy Allen
by log table I meant a log table for each table so for every table there would also be an _log table. By doing this you could reconstruct the table from any place. Point it to a day, perform some black magic on your log and current tables and there you go. ;) Just remember you also have to account

  1   2   >