Amazon Web Service?

2005-11-22 Thread Jake McKee
Has anyone used the Amazon Web Service with ColdFusion? I'm trying to figure out how to make it work and based on the very... uh... light documentation, I'm not having much luck. Any help is greatly appreciated! Jake ~| Logwa

RE: js popup ? damn that ie!!!!!

2005-11-22 Thread dave
hell thats not my code, I pulled a will & stole it! I will try that though, thanks for the effort :) ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/ From: "Bobby Hartsfield"

Re: js popup ? damn that ie!!!!!

2005-11-22 Thread Claude Schneegans
>>Sure works for me. Sorry I read too fast: I didn't notice that what you want is resize the window. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Th

Re: js popup ? damn that ie!!!!!

2005-11-22 Thread dave
it works, just doesn't auto resize in ie, in which case I just went in and made the window bigger and will just crop each pic to fit. ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/

Re: js popup ? damn that ie!!!!!

2005-11-22 Thread Claude Schneegans
Sure works for me. Check if your damn popup killer is active ;-) I had the same problem in an Intranet, so I developed a tool to detect if popups are killed and send the user to a page so he can deactivate the killer. -- ___ REUSE CODE! Use custom tags; See h

RE: punctuation in a URL variable

2005-11-22 Thread Bobby Hartsfield
Yes it would ;) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Matthew Walker [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 22, 2005 11:13 PM To: CF-Talk Subject: RE: punctuation in a URL variable Perhaps urlEncodedFormat() would be

Re: punctuation in a URL variable

2005-11-22 Thread Qasim Rasheed
Wouldn't urlencodedformat() help in this scenario. HTH On 11/22/05, Bobby Hartsfield <[EMAIL PROTECTED]> wrote: > > Have you tried #htmlencodedformat(name)# > > ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. > Bobby Hartsfield > http://acoderslife.com > > -Original Message- > From: Richard Colman [mail

RE: punctuation in a URL variable

2005-11-22 Thread Matthew Walker
Perhaps urlEncodedFormat() would be more appropriate. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Wednesday, 23 November 2005 5:00 p.m. To: CF-Talk Subject: RE: punctuation in a URL variable Have you tried #htmlencodedformat(name)# ...:.:.:.:.:.:.:.:.:.:.

RE: punctuation in a URL variable

2005-11-22 Thread Richard Colman
No, that would be too simple ... I ended doing something much uglier: #Name# But it worked. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 22, 2005 7:47 PM To: CF-Talk Subject: RE: punctuation in a URL variable Have you tried #htmlencodedfo

RE: punctuation in a URL variable

2005-11-22 Thread Bobby Hartsfield
Have you tried #htmlencodedformat(name)# ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 22, 2005 10:39 PM To: CF-Talk Subject: punctuation in a URL variable Anybody know ho

punctuation in a URL variable

2005-11-22 Thread Richard Colman
Anybody know how to pass a plus sign + in a url variable, like #Name# When #name# is equal to _X16110_IGHG3_03_CH3+c.out The result is: _X16110_IGHG3_03_CH3 c.out Notice the + is replaced with a space, screwing everything up. TNX if you can advise. Rick. ~~~

RE: js popup ? damn that ie!!!!!

2005-11-22 Thread Bobby Hartsfield
Well, now that I've posted all kinds of code... I actually don’t see a problem with your original code in IE other that I believe you may have been calling the FitPic() to early... This works. var arrTemp=self.location.href.split("?"); // var picUrl = (arrTemp.length>

Re: FileSystemObject CFC v1.0 released

2005-11-22 Thread John Lucania
Artur, Can you show me how to put this in CFMAIL? I've tried a couple of ways, but no success. jl On 11/21/05, Artur Kordowski <[EMAIL PROTECTED]> wrote: > I'm pleased to inform you about the release of the FileSystemObject CFC > v1.0. With this CFC you can use the functionality of the Windows

RE: js popup ? damn that ie!!!!!

2005-11-22 Thread Bobby Hartsfield
Ehhh here it is for the entire world to enjoy and marvel in its magnificence and extreme complexities... lol It's so complex I didn’t even remember how to use it (and I wrote it lol) Its not a tag... it’s a function...duh So you would use this instead of the previous customtag syntax #bhimginfo(

RE: js popup ? damn that ie!!!!!

2005-11-22 Thread dave
if I have to i can just size them similiar of make my popup window bigger thanks ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/ From: "Bobby Hartsfield" <[EMAIL PROTECTED]>

RE: js popup ? damn that ie!!!!!

2005-11-22 Thread Bobby Hartsfield
Ehhh... that was my quick and easy solution heh. You can put the images into a query object, array or structure...so you can loop them out into links or just call them easily and run them through an image tag (I have one I'd send you that only grabs basic info like width and height... which is all

RE: js popup ? damn that ie!!!!!

2005-11-22 Thread dave
because I don't know a way to do each one seperately without adding a new function for every photo, since they are different sizes. I'm hand putting them in so I shouldn't need any image manipulation tags. you have anything quick and easy? ~Dave the disruptor~ good sites - make money getting rid

Re: datasource problems

2005-11-22 Thread Ray Champagne
DB Type? Jennifer Gavin-Wear wrote: > Hi, > > I've had a problem on creating a new cart site. I copied files from the > first site into a second on my development pc, created a new db and the cf > db connection in cf admin. Then I decided to replace the dsn from to statis > an application set v

datasource problems

2005-11-22 Thread Jennifer Gavin-Wear
Hi, I've had a problem on creating a new cart site. I copied files from the first site into a second on my development pc, created a new db and the cf db connection in cf admin. Then I decided to replace the dsn from to statis an application set variable, took 2 mins on a search and replace. I

RE: js popup ? damn that ie!!!!!

2005-11-22 Thread Mark Henderson
Dave, It looks like you only want to open a window that sizes to the image within it (I could be wrong). If that's the case, then here's something I've used before, and it is cross browser compatible (from memory it works in IE, NS, FF and Opera). It may or may not suit your needs, but there's a

RE: CSS table-type layout

2005-11-22 Thread Jennifer Gavin-Wear
This is about the best site I know for CSS layout examples: http://www.pmob.co.uk/ I learnt my own css on www.w3schools.com Jenny ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http:/

RE: js popup ? damn that ie!!!!!

2005-11-22 Thread Bobby Hartsfield
I haven’t been through your JS yet, figured id offer an option. If you are just displaying an image, could you not just get the height and width of the image and use that for the height and width of the popup call? I use imagecr3 to do just that on occasion. That, of course will only work if you o

re: js popup ? damn that ie!!!!!

2005-11-22 Thread dave
and no im not drinking i just cant type 4 crap lol arggg ~Dave the disruptor~ good sites - make money getting rid of ie :) http://explorerdestroyer.com/ http://www.killbillsbrowser.com/ From: "dave" <[EMAIL PROTECTED]> Sent: Tuesday, November 22,

Re: CF Hosting

2005-11-22 Thread dave
host my site goes above and beyond any host i have ever used, I will never use anyone else again, period! Getting my own dedicated server there in a month or so :) and a big hehe at "winblows" Rock on bill! ( u shmuck!!) ~Dave the disruptor~ good sites - make money getting rid of ie :) http://ex

js popup ? damn that ie!!!!!

2005-11-22 Thread dave
trying to utalize a self sizing popup window, see it here: http://65.36.226.10/content/reelspecs.cfm on available colors. works everywhere but ie of course code is: head section: function PopupPic(sPicURL) { window.open( "popup.cfm?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");

Re: CF Hosting

2005-11-22 Thread James Holmes
I add a voice for HMS (Smarterlinux). When I looked for hosts, Linux was one of my criteria, even though my desktop is Windblows. On 11/22/05, Russ <[EMAIL PROTECTED]> wrote: > It's true... even though our servers are running windows, the only reason is > that our apps need sql server. If I were

RE: Scheduled Tasks Not Running

2005-11-22 Thread Snake
How did you setup the scheduled tasks. If u used cfschedule, then try setting them up via the cfadmin instead and see if they work. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: 22 November 2005 19:41 To: CF-Talk Subject: RE: Scheduled Tasks Not Running Not sure h

Re: Question regarding closing tags

2005-11-22 Thread Barney Boisvert
Whether the syntax is compliant or not, I can't speak on. However, an SGML parser will get confused because of tags like CFELSE and CFELSEIF which break the contents of a CFIF tag into separate blocks, without actually making separate blocks. So it's definitely not good SGML from a semantic persp

Re: Serving .htm as cfm on linux

2005-11-22 Thread David Livingston
Ken thanks for the link. I found the apache version here and this did it. http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm? catid=143&threadid=1039875&enterthread=y Thanks, Dave On Nov 22, 2005, at 2:58 PM, Ken Ferguson wrote: > This is talking about IIS, but it does mention

Re: Question regarding closing tags

2005-11-22 Thread Claude Schneegans
>> >>I'm not sure how that proves CFML's non-SGML-ness. HTML allowed non-valued tag attributes, like looks like an SGML tag, however x here is not an attribute defined in the DTD, it can be any variable name choosen by the user and, although I may be wrong, I'm not sure this is correct in SG

RE: OT: Prevent form submission if radio button and text field are not filled out

2005-11-22 Thread Bobby Hartsfield
function testPayMethod() { f = document.payform; var radioCheck = false; var firstEl = 0; var lastEl = 3; for (i=firstEl;i's onsubmit this... Onsubmit="return testPayMethod();" The firstEl is the position of the first radio button and lastEl is the position of the last radio but

Re: Question regarding closing tags

2005-11-22 Thread Nathan Strutz
On 11/22/05, Claude Schneegans <[EMAIL PROTECTED]> wrote: > >>though I'm so rusty on the SGML spec to say if CFML is fully compliant. > > Actually, it is not quite compliant: > I think is an example, but most other tags are > SGML compliant. I'm not sure how that proves CFML's non-SGML-ness. HTM

Re: Question regarding closing tags

2005-11-22 Thread Claude Schneegans
>>though I'm so rusty on the SGML spec to say if CFML is fully compliant. Actually, it is not quite compliant: I think is an example, but most other tags are SGML compliant. I don't think Allaire ever claimed it was, I think the main purpose was to make it "HTML like", but since HTML is SGML c

Re: Question regarding closing tags

2005-11-22 Thread Joe Rinehart
Personally I don't do it for XHTML purposes...I've noticed a lot of us that come from ECMA (C/Java/Actionscript) background tend to use it. For me, I'm used to spotting blocks of code surrounded by braces ( { and } ). Using the / helps to show me what's a statement and what's a block. -Joe On 1

RE: OT: Prevent form submission if radio button and text field are not filled out

2005-11-22 Thread Andy Matthews
Well, I'm not really sure what I'm saying. I just need for the form to submit if both of the criteria are met. If you select one of the bottom two, the full form works just fine. -Original Message- From: Kiley Simpson [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 22, 2005 4:18 PM To:

Re: OT: Prevent form submission if radio button and text field are not filled out

2005-11-22 Thread Kiley Simpson
Are you saying you need a DHTML script to reactivate the submit button if the Troop T.E.N. value is not null and either Troop radio button is selected? At 03:02 PM 11/22/2005, you wrote: >Anyone have any ideas? > >I've cut out a portion of a form on which I'm working: >http://www.andyandjaime.com

Re: SOLUTION: CF webservice consumed via .NET

2005-11-22 Thread dk
Hi Matt, Your solution to accessing CF QueryBean from .net is simply wonderful. I would also appreciate if you can share that .net class it with me - that would make things much easier. Thanks again, DK [EMAIL PROTECTED] >I'll write it, but it'll be next week before I can get to it. You shou

OT: Prevent form submission if radio button and text field are not filled out

2005-11-22 Thread Andy Matthews
Anyone have any ideas? I've cut out a portion of a form on which I'm working: http://www.andyandjaime.com/uploads/radiojs.html It's supposed to pop an alert box (and disable the form) when you click "check out" IF a) You've got either of the top two options (troop check or troop debit) selected A

Re: Question regarding closing tags

2005-11-22 Thread Nathan Strutz
On 11/22/05, Claude Schneegans <[EMAIL PROTECTED]> wrote: > I think people doing this way want to be stick to XHTML syntax which is > a stricter way of writing HTML > IMHO doing this for CF is a bit excessive, since CFML does not belong to > HTML, but to SGML, like HTML and XHTML. > Close, but no

Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
Let me now take back what I said about fixing the problem. It turns out I was using the debug=true url paramter like the post I mentioned suggested. When I remove this url parameter the form breaks and gives the same message. I used Felipe's trick to dump out both forms. I then did a diff and the o

How is the application.home set?

2005-11-22 Thread Troy Simpson
The jvm.config references a variable called "application.home". Where does this variable get set? -- Thanks, Troy ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documen

Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
wow nice! very cool trick thanks felipe On 11/22/05, Felipe Fernandes <[EMAIL PROTECTED]> wrote: > If you got a workaround, it´s ok, but if you want to find th problem > you can try do dump the form with > (or whatever is your form name) and look to the code pointed by the > error message and fi

Re: form posting question

2005-11-22 Thread Kiley Simpson
THAT'S IT!!! Thank you, thank you. This is fantastic My action page is very small now save cfc delete cfc create cfc As you pointed out, Delete is bad so I used okDelete. Your solution is perfect. I can't thank you enough. This has been blowing my mind for too lo

Re: unbelievable flash form problem

2005-11-22 Thread Felipe Fernandes
If you got a workaround, it´s ok, but if you want to find th problem you can try do dump the form with (or whatever is your form name) and look to the code pointed by the error message and find what is getting so big. Felipe On 11/22/05, Anthony Prato <[EMAIL PROTECTED]> wrote: > actually the f

Re: form posting question

2005-11-22 Thread Kiley Simpson
i have two buttons, one a Save, the other a Delete. if the input is "button" and has the onClick="showAlert#, the alert pops up fine. but the action page doesn't know which input type was clicked, either the save or the delete. if it's a button the form does not post to the for variables. this

Re: form posting question

2005-11-22 Thread Felipe Fernandes
kiley jus be carefull to do not use the word 'Delete' in place of 'Del' because it will throw an error of illegal actionscript use. Here it goes: var myform = myform var teste = teste var confirm = function (evt) { if (evt.detail == mx.controls.Alert.OK) { myform.action = 'Del' _root.sub

Re: form posting question

2005-11-22 Thread Felipe Fernandes
Ken here it goes: var myform = myform var teste = teste var confirm = function (evt) { if (evt.detail == mx.controls.Alert.OK) { myform.action = 'ok' _root.submitForm(); } } alert("Are you sure?", "Warning", mx.controls.Alert.OK | mx.controls.Alert.CANCEL, confirm);

Re: Serving .htm as cfm on linux

2005-11-22 Thread Ken Ferguson
This is talking about IIS, but it does mention the XML file changes. http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_18289 --Ferg Ken Ferguson wrote: >Why would you want to do that? (just kidding) > >I think in MX6+ you've got to make some changes to an xml file. I >haven't do

Re: Question regarding closing tags

2005-11-22 Thread Claude Schneegans
I think people doing this way want to be stick to XHTML syntax which is a stricter way of writing HTML IMHO doing this for CF is a bit excessive, since CFML does not belong to HTML, but to SGML, like HTML and XHTML. -- ___ REUSE CODE! Use custom tags; See htt

Re: Serving .htm as cfm on linux

2005-11-22 Thread Ken Ferguson
Why would you want to do that? (just kidding) I think in MX6+ you've got to make some changes to an xml file. I haven't done this in a while, but I used to use different file extensions for my apps and it seems to me that once we entered the MX era, you had to touch the xml. I'll poke around a

Re: form posting question

2005-11-22 Thread Ken Ferguson
well, change the event handler to post or not post based on the results of the alert confirm. --Ferg Kiley Simpson wrote: >Hi Ferg, > >This is a very cool example. I doesn't prevent a form post though. That's >the part I don't know how to do. > >Very cool site! > >At 01:35 PM 11/22/2005, you wr

Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
actually the function is pretty short function getHistoryData() { var filterArguments = {}; filterArguments.clinicid = clinicList.selectedItem.clinicid filterArguments.drug

Re: form posting question

2005-11-22 Thread Kiley Simpson
Hi Ferg, This is a very cool example. I doesn't prevent a form post though. That's the part I don't know how to do. Very cool site! At 01:35 PM 11/22/2005, you wrote: >I think this will work for you. It allows you to use an alert as a >confirm in flash forms. > >http://www.asfusion.com/blog/ent

Re: form posting question

2005-11-22 Thread Ken Ferguson
I think this will work for you. It allows you to use an alert as a confirm in flash forms. http://www.asfusion.com/blog/entry/alert-box-for-cfform --Ferg Kiley Simpson wrote: >"confirm" doesn't work with cfforms I'm afraid. > >I have a massive hack to solve this if anyone is interested. It is

RE: form posting question

2005-11-22 Thread Kiley Simpson
"confirm" doesn't work with cfforms I'm afraid. I have a massive hack to solve this if anyone is interested. It is posting to another page and doing the check there, I really wanted to remain on the same page. At 01:11 PM 11/22/2005, you wrote: >Try this: > > type="submit" > name="buttonDe

RE: form posting question

2005-11-22 Thread Munson, Jacob
Try this: I'm not sure if this works with flash forms though. > -Original Message- > From: Kiley Simpson [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 22, 2005 11:57 AM > To: CF-Talk > Subject: Re: form posting question > > nope. > > but i ultimately need to have 2 buttons, one

Re: form posting question

2005-11-22 Thread Kiley Simpson
nope. but i ultimately need to have 2 buttons, one a Save the other Delete. I want the Delete to pop a warning to the user. The onClick of the Delete has a #showAlert# call but if the button is of type Submit, the form posts regardless if the user responds to the alert. I am hacking my through

RE: Scheduled Tasks Not Running

2005-11-22 Thread Ian Skinner
Not sure how this would affect a move to MX7, but IIRC the username and password provided in a scheduled task can only work with basic authentication, not integrated. To use integrated the ColdFusion service would need to be run as a user that can be a service and have the appropriate permissio

Re: Scheduled Tasks Not Running

2005-11-22 Thread Tim Claremont
CFMX 7.01 Standalone, registered version. Windows Server 2k3 IIS ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client wit

RE: Scheduled Tasks Not Running

2005-11-22 Thread Ian Skinner
Which type of CFMX7? Stand alone, Enterprise, Multi-instance? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA "C code. C code run. Run code run. Please!" - Cynthia Dunning Confidentiality Notice: This message including any attachments is for the sole u

RE: Scheduled Tasks Not Running

2005-11-22 Thread Claremont, Timothy
Here is a bit more information on my Scheduled Tasks Not Running conundrum... I have a series of scheduled tasks that are set to run at various times of the day. Since the migration to version 7, these tasks have stopped running. All of them. When I check the box that outputs the results to a fi

Re: unbelievable flash form problem

2005-11-22 Thread Felipe Fernandes
I had some problem like yours a time ago, what i learned is the the 32K (or 64K sometimes) refer to i single line of mxma script. So lets understend what´s going under the hood here: When you do a flash form, coldfusion gets your code, process it and passes to it´s internal flex compiler (yes coldf

RE: form posting question

2005-11-22 Thread Munson, Jacob
You'll have to ask the person that asked the original question. I was just trying some stuff as an attempt to answer the question. I think their problem has boiled down to a perceived limitation with flash forms, and how you can or can't validate things. > -Original Message- > From: Ken

Serving .htm as cfm on linux

2005-11-22 Thread David Livingston
I am trying to set up a way to serve .htm pages as cfm pages. The why is not important, that is what I want to do. I am running CF 7 on Suse 9.3 and Apache 2. I was hoping I could just change the AddHandler option and add .htm to the list. When I do that I get: [an error occurred while proces

Re: easy cfgrid question

2005-11-22 Thread Felipe Fernandes
function doubleCheck(){ var msg = 'The massage you want to display'; var alertSettings:Object = {title:'Warning!', message: msg, headerHeight:27, x: 60, y: 10} errorpopup = mx.managers.PopUpManager.createPopUp(this, FormErrorException, true, alertSettings);

RE: Shopping Cart - Coupon/Discount

2005-11-22 Thread Mike | NZSolutions Ltd
Thanks mary, I think this is the way I will head - 2 different table setups. mike -Original Message- From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] Sent: Wednesday, 23 November 2005 5:37 a.m. To: CF-Talk Subject: Re: Shopping Cart - Coupon/Discount >i am a bit stumped as to whether i

SOLVED Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
well sort of solved, more like hacked found this post saying something about flex making wierd compile decisions and one solution is to add a bunch of junk code http://groups.google.com/group/macromedia.flex.general_discussion/browse_thread/thread/a12575ea5ea1c758/506b79e825fe4116?lnk=st&q=around+

RE: easy cfgrid question

2005-11-22 Thread Nick Han
Bobby, I had this all along, alert(employee_grid.dataProvider[employee_grid.selectedIndex]['User_Emai l']). Flash displayed the field data file but when used ActionScript to reference fields, it's case-sensitiveshould have known..haha. Thanks. -Original Message- From: Bobby Hartsfi

RE: unbelievable flash form problem

2005-11-22 Thread Ian Skinner
While I haven't tried that, I wouldn't expect it to work in regular CF code - you can't put one CFML tag within another tag. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Later versions of CF do allow comments inside tags. This allows the selective switching on and off of parameter

RE: unbelievable flash form problem

2005-11-22 Thread Bobby Hartsfield
I haven’t tried it either, but I've noticed it fails from seeing other people try it recently ;) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 22, 2005 12:45 PM To: CF-Talk Sub

Re: form posting question

2005-11-22 Thread Ken Ferguson
Why are you checking the value for the buttonDelete form element in the first place??? Surely you're not using more than one button with that same name are you? >>I tried , and my buttonDelete input field didn't >>exist in the struct >>

Re: Can I Remove These Hotfixes?

2005-11-22 Thread Dave Carabetta
On 11/22/05, Dave Carabetta <[EMAIL PROTECTED]> wrote: > On 11/22/05, Snake <[EMAIL PROTECTED]> wrote: > > If you have applied an updater that has those fixes, then u can delete the > > files and remove them form the class path > > > > Well yeah, I figured that. I was more wondering if it's safe to

Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
I'd also like to add that the entire file, html and all is only 15k. I deleted both buttons listed before and replaced them with an unstyled button. Then I copied/renamed the unstyled button 20 times. The move loads fine with all 20 buttons but breaks again if I try to add a style to any of them.

Re: Question regarding closing tags

2005-11-22 Thread Charlie Griefer
yeah, pre-MX (CF 5), would dump twice since it was implemented as a (built in) custom tag :) but good point, definitely worth pointing out. On 11/22/05, JediHomer <[EMAIL PROTECTED]> wrote: > You will have to watch out for Custom tags and CFModule, as closing > the tag this way will execute the

RE: easy cfgrid question

2005-11-22 Thread Bobby Hartsfield
I apparently pasted the wrong code (although there is not much difference between it and this) since my alert() is different here... but this is what I have up and running fine... if(employee_grid.dataProvider[employee_grid.selectedIndex]['user_email']=='' ) { alert('Please enter an e

Re: unbelievable flash form problem

2005-11-22 Thread Anthony Prato
Ok, debugging is on now, it gets more wierd... here are the buttons: - -- the bottom is the one styled how I like. I've given up on commenting out, I am just trying to delete the first button (remember it works fine with both) I get the flash debugging message: ---

Re: Can I Remove These Hotfixes?

2005-11-22 Thread Dave Carabetta
On 11/22/05, Snake <[EMAIL PROTECTED]> wrote: > If you have applied an updater that has those fixes, then u can delete the > files and remove them form the class path > Well yeah, I figured that. I was more wondering if it's safe to say that *any* hotfix with a *_61.jar name can be removed if MX 6

RE: unbelievable flash form problem

2005-11-22 Thread Dave Watts
> Another thing I've noticed about flash forms. You have to > be careful where you put your comments. Eg... don't do something > like... > > query="" etc... /> While I haven't tried that, I wouldn't expect it to work in regular CF code - you can't put one CFML tag within another tag. Dave

RE: Can I Remove These Hotfixes?

2005-11-22 Thread Snake
If you have applied an updater that has those fixes, then u can delete the files and remove them form the class path -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: 22 November 2005 17:21 To: CF-Talk Subject: Can I Remove These Hotfixes? So I've been having a hug

RE: easy cfgrid question

2005-11-22 Thread Nick Han
It's not empty. The email value is visible on the grid. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Monday, November 21, 2005 7:35 PM To: CF-Talk Subject: RE: easy cfgrid question Because your email field is empty maybe? Try alert("Enter an email address

RE: Question regarding closing tags

2005-11-22 Thread Bobby Hartsfield
It can affect custom tags that don’t check for the execution mode at the beginning of the tag. Eg... and will act differently (on 6.1 at least) if the custom tag doesn’t check the executionmode. If you notice a problem (like the tag appears to execute twice) Just throw this in the top of the

Re: Shopping Cart - Coupon/Discount

2005-11-22 Thread Mary Jo Sminkey
>i am a bit stumped as to whether i should be looking at one set of >tables to handle all the options above, or whether i should create to >distinct sets to handle either a discount scenario or a free product >scenario. >From my own experience, I would say to go with a different set of >tables/se

Re: Multi-tier affiliate program

2005-11-22 Thread Mary Jo Sminkey
> Mary Jo, who frequents this list, wrote cfwebstore, which has a > built-in > affiliate program, although I'm not sure of how may tiers, maybe she > might have something for you Naw, it's a pretty basic one, just one tier. And definitely is not intended to be used as a stand-alone apart f

Re: unbelievable flash form problem

2005-11-22 Thread Paul Hastings
Anthony Prato wrote: > anyone got any ideas? turn on flash debugging. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a clie

RE: unbelievable flash form problem

2005-11-22 Thread Bobby Hartsfield
Another thing I've noticed about flash forms. You have to be careful where you put your comments. Eg... don’t do something like... query="" etc... /> ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROT

Re: unbelievable flash form problem

2005-11-22 Thread Kiley Simpson
Have you checked both buttons aren't the same name? At 10:13 AM 11/22/2005, you wrote: >I'm not even sure what to say about this, or how anyone else can >replicate it. I've got a flash form with a bunch of different >elements. It has two buttons. I was styling one button, got it looking >how I wan

Can I Remove These Hotfixes?

2005-11-22 Thread Dave Carabetta
So I've been having a huge headache trying to figure out why our production cluster won't replicate sessions correctly while our internal cluster rolls along when a member is removed. We are currently running CF 6,1,0,83762 (Enterpise Edition), which is officially the ColdFusion MX 6.1 Updater. In

RE: unbelievable flash form problem

2005-11-22 Thread Bobby Hartsfield
May or may not be part of your problem but when dealing with any flash, I always set my browsers to not cache anything so I know I'm always looking at the latest file. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Anthony Prato [mailto:[

unbelievable flash form problem

2005-11-22 Thread Anthony Prato
I'm not even sure what to say about this, or how anyone else can replicate it. I've got a flash form with a bunch of different elements. It has two buttons. I was styling one button, got it looking how I wanted and copied the style to the other button. reload the browser: Nothing wtf? tried again,

RE: form posting question

2005-11-22 Thread Kiley Simpson
ug, that's bad news. I think I will have to abandon cfforms format="flash". Warning before a delete is such a common thing to do I can't really tell my customer to, "just be careful". I wish macromedia would address this very common and, should be, simple operation. At 09:27 AM 11/22/2005,

RE: form posting question

2005-11-22 Thread Kiley Simpson
I found the same thing, dumping the form variables shows the button isn't there. I would like to have two buttons (for lack of a better word) on the same cfform. One being "Save" and the other "Delete". The page posts to itself and I would like to detect which button was clicked, the run the a

Re: Question regarding closing tags

2005-11-22 Thread JediHomer
You will have to watch out for Custom tags and CFModule, as closing the tag this way will execute the file twice On 22/11/05, Charlie Griefer <[EMAIL PROTECTED]> wrote: > It's pure preference. Some people like it because it maintains > consistency in their markup (XHTML tags are self-closing, so

Re: Parsing XML with

2005-11-22 Thread Stephen Moretti
>> I've got some xml files that have the following header > >I don't think it's valid, actually. I think the syntax for linking to a >stylesheet is "xml-stylesheet", not "xml:stylesheet". The colon is used for >namespace prefixes. > >http://www.w3.org/TR/xml-stylesheet/ > Cheers Dave. That is ex

Re: Question regarding closing tags

2005-11-22 Thread Charlie Griefer
It's pure preference. Some people like it because it maintains consistency in their markup (XHTML tags are self-closing, so apply the same technique to your CFML tags). It has no impact (good or bad) on performance (that I'm aware of). It's neither "right" nor "wrong" to do it or not to do it.

RE: Question regarding closing tags

2005-11-22 Thread Munson, Jacob
> I have noticed in many code samples that I see/learn from, > the use of a > forward-slash in this fashion > > > > I understand that this represents that this particular tag > has no closing > tag. Is this a habit I should adopt in my coding and if so, > should I use > this syntax on eve

Question regarding closing tags

2005-11-22 Thread Charlie Hanlon
I have noticed in many code samples that I see/learn from, the use of a forward-slash in this fashion I understand that this represents that this particular tag has no closing tag. Is this a habit I should adopt in my coding and if so, should I use this syntax on every cf tag that does have

RE: Parsing XML with

2005-11-22 Thread Dave Watts
> I've got some xml files that have the following header > before the main data: > > > > > > All of this is valid and is parsed by the client's supplier > and xmlparse() will happily parse this, but only if I remove > the tag. I don't think it's valid, actually. I think the syntax for li

Parsing XML with

2005-11-22 Thread Stephen Moretti
I've got some xml files that have the following header before the main data: All of this is valid and is parsed by the client's supplier and xmlparse() will happily parse this, but only if I remove the tag. Should xmlparse() be able to handle this? If it can't, any suggestions on how I

RE: form posting question

2005-11-22 Thread Dave Watts
> I tried , and my buttonDelete input field didn't > exist in the struct. The value for an INPUT with TYPE="button" is not passed to the action page. This INPUT type is really just intended as a place from which you can attach JavaScript event handlers. Dave Watts, CTO, Fig Leaf Software http://w

RE: form posting question

2005-11-22 Thread Munson, Jacob
I tried , and my buttonDelete input field didn't exist in the struct. I guess you can't use that, at least I'm not sure how. But here's something I got to work: And then in your action page check the value of buttonDeleteValue. > -Original Message- > From: Kiley Simpson [mailto:[EMAIL

  1   2   >