Re: List of Open BlueDragon Tags?

2008-07-16 Thread Tom Chiverton
On Wednesday 16 Jul 2008, Will Tomlinson wrote: Does anyone know where I can find the list of open blue dragon tags? http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags-pt0_01.html :-) -- Tom Chiverton This email is

Re: Formating text within textarea

2008-07-16 Thread Kamru Miah
The problem seems to combining the text with HTMLEditFormat to display the contents and other HTML characters, such as 'ndash;' in the text that was added by the editor toolbar. How do I strip those out, without knowing what other types may be added by the users? Ideally, there should be a way

cfwindow inside iframe issue

2008-07-16 Thread Bower Jeremy-AJB075
I'm using some nicely formated cfwindows as tool tip type popups inside an iframe that is expandable/collapsable (tr.innerHTML=iframe or ). When the user tries to collapse the iframe IE blows up. The expand, rollover, and mouseout events all act as they should. Is there a way to more gracefully

Re: loop over list question

2008-07-16 Thread Rachel B
Well i wanted to thank both of you for the help, an i was able to solve my problem. By putting a counter in it i am able to accomplish my goal. the only thing i got to figure out is why it doesn't put the correct information into my 2nd serial. Like it i fill out 2 serial numbers and press

cfcatch

2008-07-16 Thread Brian Dumbledore
I always thought any error generated can be cfdump'd by dumping cfcatch obj. Every now and then I get [unknown type] when I dump cfcatch and that always stumped me. However, when I output cfcatch.Message and cfcatch.Detail, they always work. What am I missing?? I see it mostly on CFMX

RE: cfwindow inside iframe issue

2008-07-16 Thread William Seiter
Have you tried ..style.display = 'none' in javascript? Instead of the .innerHTML -- William Seiter ColdFusion Web Developer / Consultant http://william.seiter.com Free Website Trade Publication Website Magazine

Re: List of Open BlueDragon Tags?

2008-07-16 Thread Terry Schmitt
The best you find right now are the docs at New Atlanta: http://www.newatlanta.com/support/bluedragon/docs/index.jsp Does anyone know where I can find the list of open blue dragon tags? Thanks, Will ~| Adobe® ColdFusion® 8

Re: Formating text within textarea

2008-07-16 Thread Kamru Miah
Display correction: other HTML characters, such as '\ndash;' ( + ndash).. The problem seems to combining the text with HTMLEditFormat to display the contents and other HTML characters, such as 'ndash;' in the text that was added by the editor toolbar. How do I strip those out, without

Re: Multiple queries from a CFC? Drop in Array?

2008-07-16 Thread Joe Rinehart
Why? It will almost certainly be a much better solution than anything else you're considering. Dave - Not sure it's better than 'anything else.' Why stick with a query that'd need constant grouping when what he's got in the DB is a set representing a hierarchical data structure? Instead

Re: loop over list question

2008-07-16 Thread Carl Von Stetten
Rachel, It would still be helpful if you could post a dump of the form scope so we can see the structure of the data being passed into your template. We would likely be able to provide you with more intelligent suggestions than from looking at your query alone. Thanks, Carl Rachel B wrote:

Re: loop over list question

2008-07-16 Thread Rachel B
Here is the form i am working with. !--- Adds Multiple Ticket fields --- script type=text/javascript !---Allows us to add multiple fields --- function addInput(divName){ var dynamic = document.getElementById('dynamicInput'); var thevalue = document.getElementById('theValue'); var count =

Re: cfcatch

2008-07-16 Thread Charlie Griefer
On Wed, Jul 16, 2008 at 6:58 AM, Brian Dumbledore [EMAIL PROTECTED] wrote: I always thought any error generated can be cfdump'd by dumping cfcatch obj. Every now and then I get [unknown type] when I dump cfcatch and that always stumped me. However, when I output cfcatch.Message and

Re: loop over list question

2008-07-16 Thread Carl Von Stetten
Rachel, While this is helpful, can you add a cfdump var=#form# to the top of userform.cfm? Then submit your form with multiple entries, and copy and paste the cfdump results into a message for us to examine. Thanks, Carl Rachel B wrote: Here is the form i am working with. !--- Adds

Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Rick Faircloth
I need to make a move from my current VPS provider. I've had problems accessing the server via Remote Desktop for a month and while I've been promised support and even a new server, I can't even get an answer on status for a priority email. I can't even set up a datasource for a client. I'm

RE: Multiple queries from a CFC? Drop in Array?

2008-07-16 Thread Dave Watts
Why? It will almost certainly be a much better solution than anything else you're considering. Dave - Not sure it's better than 'anything else.' Why stick with a query that'd need constant grouping when what he's got in the DB is a set representing a hierarchical data structure?

Re: Report Builder Question

2008-07-16 Thread Mike Greider
Sorry for the delay. We just had a baby on the 11th, and I'm still figuring out how to juggle the little guy and all other tasks. Yes, it is being passed in via a query. Each line item has a name, and description field (which is an unlimited textarea). I have been debating trying to do what you

Re: cfwindow inside iframe issue

2008-07-16 Thread Jeremy Bower
Correction: I just use insertRow() and deleteRow(), not innerHTML. I have now tried this: eval(if (!document.all. + table_name + .rows[1]) { my_new_row = document.all. + table_name + .insertRow(1); } else { my_new_row = document.all. + table_name + .rows[1]; }); eval(document.all. +

Re: cfwindow inside iframe issue

2008-07-16 Thread Azadi Saryev
DISPLAY is not a valid TAG ATTRIBUTE. it is just a style setting. ..setAttribute() is useless for setting DISPLAY STYLE. use William's suggested .style.display='none' / '' instead. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Jeremy Bower wrote: Correction: I just use insertRow() and

Re: Report Builder Question

2008-07-16 Thread Rob Parkhill
Mike, Congratulations! Children are a joy, but I hope you are prepared for little sleep for some time! Anyways, yes, that was my thought, however I was hoping that you would know a few more details regarding the line items. If the information is stored in the database, is there anyway that you

Any cfhttp gurus out there?

2008-07-16 Thread Che Vilnonis
I used to be able hit this link and get results with a cfdump... http://www.dealsonwheels.com/dowrss/chevrolet_camaro.aspx Now, all I get is a value of Connection Failure for cfhttp.fileconent. I know the link works since I can add it to FireFox and a Live Bookmark is created. Any ideas? Is it an

RE: Any cfhttp gurus out there?

2008-07-16 Thread Dave Watts
I used to be able hit this link and get results with a cfdump... http://www.dealsonwheels.com/dowrss/chevrolet_camaro.aspx Now, all I get is a value of Connection Failure for cfhttp.fileconent. I know the link works since I can add it to FireFox and a Live Bookmark is created. Any ideas?

Re: loop over list question

2008-07-16 Thread Rachel B
Carl, I did the cfdump and here is what i got CURRENTDATERESOL on,on CURRENTDATEVERT on,on DEPTVENDOR Shipping/Receiving,Shipper DESCRIPTION descr,descript FIELDNAMES

RE: Any cfhttp gurus out there?

2008-07-16 Thread Che Vilnonis
Dave, what do you mean exactly? Do you mean any browser? I've tried a few and get the same results each time. See snippet below. cfset useragent = Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.4) Gecko/20070515 Firefox/2.0.4 cfhttp

Re: cfwindow inside iframe issue

2008-07-16 Thread Jeremy Bower
Sorry, should have noted I had tried: eval(document.all. + table_name + .rows[1].style.display='yes'); and got a JS error Could not get the display property. Invalid argument. DISPLAY is not a valid TAG ATTRIBUTE. it is just a style setting. .setAttribute() is useless for setting DISPLAY STYLE.

Re: Any cfhttp gurus out there?

2008-07-16 Thread Alan Rother
Use This cfhttp url=http://www.dealsonwheels.com/dowrss/chevrolet_camaro.aspx; method=GET useragent=Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv: 1.8.1.4) Gecko/20070515 Firefox/2.0.4 cfhttpparam name=.ASPXANONYMOUS

Re: Any cfhttp gurus out there?

2008-07-16 Thread Michael Dinowitz
Dump out the entire cfhttp to see what the headers look like. It may be that they are using connection keep-alive to prevent spidering or something else. In some cases the page is doing a redirect and you don't see it because cfhttp turns on redirect as a default. Setting it to no may tell you

RE: Any cfhttp gurus out there?

2008-07-16 Thread Dave Watts
Dave, what do you mean exactly? Do you mean any browser? I've tried a few and get the same results each time. I mean, find out EXACTLY what your browser is sending, and send the same thing. Not just User-Agent, but all the other HTTP request headers too. Use CFHTTPPARAM TYPE=CGI to set the

Re: Any cfhttp gurus out there?

2008-07-16 Thread Alan Rother
Sorry, I did not mean to hit send... Quick explanation. There are two CFHTTP, the first gets a cookie value back from the server, the second makes use fo the cookie, I don't know if the server cares, but I've seen security models like that before, so it's good to send a cookie back, it makes

Re: cfwindow inside iframe issue

2008-07-16 Thread Azadi Saryev
YES is not a valid value for DISPLAY property. check the html/css reference. use none (to hide), inline, block or [empty string] (to show) an element. there are other valid values, too, but support varies by browser and you will unlikely use those for a TR tag display anyway. also, you remember

RE: Any cfhttp gurus out there?

2008-07-16 Thread Che Vilnonis
Alan/Dave... thanks... now I get it. Had not run into something quite like that before. Alan, thanks for the headsup on HttpFox. Regards, Che -Original Message- From: Alan Rother [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2008 2:31 PM To: CF-Talk Subject: Re: Any cfhttp gurus

Re: Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Will Tomlinson
I need to make a move from my current VPS provider. I've had problems accessing the server via Remote Desktop for a month and while I've been promised support and even a new server, I can't even get an answer on status for a priority email. I can't even set up a datasource for a client. Rick,

cfimage Blob problem

2008-07-16 Thread BJ McShane
We have the employee photos stored in an oracle DB (blob format). I'm reading the record getting the photo and then using the image tags to store or display them. The problem is that some of the photos look like they are getting cut off. When I look at the photo it is only the person's head

Re: Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Sherif Abdou
You can always try SoftLayer.com - Original Message From: Will Tomlinson [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, July 16, 2008 1:44:56 PM Subject: Re: Anybody have exerience with KickAssVPS.com? I need to make a move from my current VPS provider. I've

RE: Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Rick Faircloth
Thanks for the tip, Will. I'm looking them over. I think the $129 would be enough, at least for now. The only difference I see is I get 10GB instead of 22GB for files and 512MB memory instead of 1GB. Be nice to have the extra drive space and memory, but for $60 extra dollars...I've only been

Re: Any cfhttp gurus out there?

2008-07-16 Thread Dominic Watson
Also, if you're parsing the content you get back, perhaps you'd benefit from cffeed, ie. cffeed source=http://www.dealsonwheels.com/dowrss/chevrolet_camaro.aspx; query=qry_chevs cfdump var=#qry_chevs# I tried the exact code above and got the expected result. I then tried the code below using

RE: cfimage Blob problem

2008-07-16 Thread Dawson, Michael
Check your datasource's advanced settings. Is the BLOB checkbox checked? What is the value in the Blob Buffer(bytes) field? m!ke -Original Message- From: BJ McShane [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 16, 2008 1:58 PM To: CF-Talk Subject: cfimage Blob problem We have the

Re: Report Builder Question

2008-07-16 Thread Mike Greider
Thanks for your continued help. Yes, each user is able to can the line descriptions for each line item each time. I could count the characters in the description. That is certainly an option. It will have to be smart, because the descriptions can contain newlines as well. It sure is a terrible

Re: Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Will Tomlinson
It's quite a jump, but I've got to have a reliable server and service. HostMySite.com and KickAssVPS.com are in the running right now. HostMySite.com - $129 / month for 10GB drive space and 512GB RAM KickAssVPS.com - $155 / month for 20GB drive space and 2GB RAM Rick, just don't make a major

Squid and CF

2008-07-16 Thread Rand Thacker
I have recently updated some servers from older Ubuntu 6.06.1 LTS servers using CF7 and Squid 2.5.stable12 to CentOS 5.1 with CF7 and Squid 2.6.stable6 (CentOS is basically RedHat RHEL). My problem appears to be: our homepage has a small iframe, user can click a Login link, and it pops a login

Re: Report Builder Question

2008-07-16 Thread Rob Parkhill
Mike, I agree it has to be easier. I have found a function that counts the pages in the report, however, I am still looking for how to access it... I haven't found any help yet, but apparently the function (Called beforeExport) counts the number of pages in your report and basically allows you

Re: Loop over field names

2008-07-16 Thread Robert Bell
When submitted, the FORM scope will contain these form fields. CF can access them using the CFLOOP COLLECTION attribute. m!ke cfoutput cfloop collection=#FORM# item=blah #blah# = #FORM[blah]# br /cfloop /cfoutput ~|

Re: Loop over field names

2008-07-16 Thread Brian Kotek
Right but that doesn't help if the field names are username_1, id_1, username_2, id_2, etc. He needs to be able to organize multiple sets of form data into the proper format on the server. Simply looping over the form scope won't help with that. The hard way is to loop over the form data and try

Re: cfimage Blob problem

2008-07-16 Thread BJ McShane
Yes, thanks you very much that was it. I made that setting bigger and now the picture is displaying the full photo. I didn't even think about the DSN area. Thanks for the help, BJ Check your datasource's advanced settings. Is the BLOB checkbox checked? What is the value in the Blob

RE: Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Rick Faircloth
Just to let you know... KickAssVPS.com cut me a deal for $100 per month on a VPS with these specs: (Normally $130) Setup Fee ($0) 30 GB Disk Space 1280 RAM 200 GB Data Transfer 1 IP Windows 2003 Virtuozzo for Windows Quad_CPU Redundant Servers CF 8 MySQL 5 (1 GB Datasources) SmarterMail Pro (5

Re: Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Shannon Peevey
On Wed, Jul 16, 2008 at 4:13 PM, Rick Faircloth [EMAIL PROTECTED] wrote: Just to let you know... KickAssVPS.com cut me a deal for $100 per month on a VPS with these specs: (Normally $130) At these prices, wouldn't purchasing a Coldfusion license from Adobe, and renting a dedicated server

RE: Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Rick Faircloth
Hmmm... let me look at ServerPronto's site... - Intel Pentium 4, 3 GHz (as opposed to a Quad Core Pentium) - 1 GB RAM (Half as much) - 160 GB HDD (as opposed to 30 GB data space) - 800 GB Traffic Bandwidth (only 200 GB with KAVPS, but still enough) - Only 6 email support tickets per month ($15

cfgrid ... misbehavior.

2008-07-16 Thread Ian Skinner
I have a cfgrid type=flash... that is behaving in an inconsistent manner. On the development server the grid tag works correctly and produces the desired grid control from the specified query. On the production server, using, the same code and database, the grid tag produces a control with

Ever get this DB error Encoding Not Supported?

2008-07-16 Thread Dustin Martin
I've been getting this error while trying to run queries hitting DB2. Error Executing Database Query. encoding not supported!! The queries that hit DB2 run fine on our server and my coworkers' computer...just not mine. I can verify the connection with no error in CF Admin and can hit SQL

Multiple Job Histories

2008-07-16 Thread Robert Newhart
I am building a membership app which requires multiple job histories. I have tried to build the section using the CFPanel Tabs function as well as with Spry panels. Ideally, the client wants to be able to have unlimited job histories but is fine with a limited amount. I am looking for a

Re: Multiple Job Histories

2008-07-16 Thread William Seiter
I like the method that was being used earlier. Use javascript to 'insertRow', so the user can create as many histories as they need. Then when CF receives the file you can do a 'while' loop that only inserts the work history data as the fields exist in the form element. William

Re: cfwindow inside iframe issue

2008-07-16 Thread William Seiter
I set up a text box and a text field to try to mimic what you are trying to do. I was able to come up with this, somewhat rudimentary, concept below. I hope that it might help you to debug. var submitRow = function () { var newmssg = document.getElementById('message').value;

Re: Multiple Job Histories

2008-07-16 Thread Robert Newhart
William, when you say the method used earlier Im not really clear on what you mean. Additionally, I don't have any real Javascript experience. I like the method that was being used earlier. Use javascript to 'insertRow', so the user can create as many histories as they need. Then when

Re: loop over list question

2008-07-16 Thread Carl Von Stetten
Rachel, You might want to look into Brian Kotek's FormUtils, which I believe is designed to handle just this kind of situation. http://formutils.riaforge.org/ HTH, Carl Rachel B wrote: Carl, I did the cfdump and here is what i got CURRENTDATERESOL on,on CURRENTDATEVERT on,on

cfprocparam and varchar(max)

2008-07-16 Thread Scott Brady
I have a stored procedure in SQL Server 2005 which takes two input parameters, one of which is a varchar(max) data type. When I try to call the procedure with cfstoredproc, I get an error Operand type clash: text is incompatible with int . If I use cfquery to execute the procedure (using

Re: cfcatch

2008-07-16 Thread s. isaac dealey
I always thought any error generated can be cfdump'd by dumping cfcatch obj. Every now and then I get [unknown type] when I dump cfcatch and that always stumped me. However, when I output cfcatch.Message and cfcatch.Detail, they always work. What am I missing?? I see it mostly on CFMX There

Weird CF error in the administrator

2008-07-16 Thread Bobby Hartsfield
Google isn't much help on this one. Today, we got our new virtual dev server in and setup a few instances of CF8 on it. Each instance is identical, stand alone, latest hotfixes, etc.. When I added the datasources through the CF Administrator, everything went fine. But when I actually hit

Re: Multiple Job Histories

2008-07-16 Thread William Seiter
http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:57026#309182 William, when you say the method used earlier Im not really clear on what you mean. Additionally, I don't have any real Javascript experience.

Re: cfprocparam and varchar(max)

2008-07-16 Thread C S
cfprocparam dbvarname=@affiliateID variable=#val(arguments.affiliateID)# cfsqltype=CF_SQL_INTEGER / I think the attribute should be value not variable. Also, I thought dbvarname was deprecated ? ~| Adobe® ColdFusion®

Re: Multiple Job Histories

2008-07-16 Thread Robert Newhart
William, Thank you for your help. I will do some homework to figure out how to get this done, but you have given me a starting point. http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:57026#309182 William, when you say the method used earlier Im not really clear on what you

CFWindow and CFForm Submit

2008-07-16 Thread Michael Fisher
Hi, I have looked around and have found documentation stating that if I have a cfwindow with a cfform, the form will submit in the cfwindow and will NOT refresh the parent page. Is this correct. I need the parent page to refresh because I have a query setup when you initially hit the page. The

CF5 on Win2k3

2008-07-16 Thread Aaron Rouse
Anyone messed with removing CF5 from a Win2k3 box and if so was there anything special you had to do to get it off? We plan to remove it from some of our boxes and put a clean install of CF8 on them. I have seen the note from Adobe on how to put it on and just assuming we work backwards on that.

Re: Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Shannon Peevey
On Wed, Jul 16, 2008 at 4:41 PM, Rick Faircloth [EMAIL PROTECTED] wrote: Hmmm... let me look at ServerPronto's site... - Intel Pentium 4, 3 GHz (as opposed to a Quad Core Pentium) - 1 GB RAM (Half as much) - 160 GB HDD (as opposed to 30 GB data space) - 800 GB Traffic Bandwidth (only 200 GB

Re: Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Mary Jo Sminkey
I'm considering moving to a new VPS provider and found KickAssVPS.com on Google. I haven't heard of them before or seen them mentioned on the list, so I thought I'd ask about experience. Offerings and price looks good, including CF 8. Rick, I've been using KickAss for a few months now with a

Re: Anybody have exerience with KickAssVPS.com?

2008-07-16 Thread Mary Jo Sminkey
It's quite a jump, but I've got to have a reliable server and service. HostMySite.com and KickAssVPS.com are in the running right now. HostMySite.com - $129 / month for 10GB drive space and 512GB RAM KickAssVPS.com - $155 / month for 20GB drive space and 2GB RAM I assume you mean HMS is 512MB,