IsDefined()

2008-07-12 Thread Sherif Abdou
Easy question, I looked everywhere but do not know what to exactly search. Anyhow, say you have an HTML Form, and a bunch of other variables in HTML are they all undefined unless you submit the page? I did an example and I found that is true but just want to make sure it is suppose to behave tha

Re: Agile coldfusion

2008-07-12 Thread Brian Kotek
On Sat, Jul 12, 2008 at 4:44 PM, Neb o'Gwbl <[EMAIL PROTECTED]> wrote: > Hello all, > > I've just started work at a company that is in the middle of moving to an > agile development process who use coldfusion, javascript and pl/sql. > > I have a couple of questions where you hopefully will be able

Re: (ot) javascript problem

2008-07-12 Thread Sonny Savage
I use this: http://tredosoft.com/Multiple_IE You can install 3.0 through 6.0 as stand-alone. I then have IE 7 as my system install. On Fri, Jul 11, 2008 at 6:30 PM, Claude Schneegans < [EMAIL PROTECTED]> wrote: > >>You might want to take a look at IE7 stand alone. > > I will sure do. > Thanks.

Agile coldfusion

2008-07-12 Thread Neb o'Gwbl
Hello all, I've just started work at a company that is in the middle of moving to an agile development process who use coldfusion, javascript and pl/sql. I have a couple of questions where you hopefully will be able to point me in the right direction ... Given that most agile texts are geared

Re: Parsing my authorize.net response list

2008-07-12 Thread Will Tomlinson
>Will, > >I ended up creating a function that cleaned up the data and built a >structure out of it. It is in the office right now but i can send it to you >on Monday. Thanks dude! I posted again about resolving this issue, but it never went through. :( I blogged the solution, which looks like w

Re: best way to get this data out of query

2008-07-12 Thread Cameron Childress
QoQ is only a subset of the SQL available in a full RDBMS. Heavier lifting is usually better suited for SQL calls directly to your database. I'm not saying it's impossible to solve this problem using QoQ, I'm just saying it really looks like you should consider solving this problem in the DB and

Re: Looping over database columns

2008-07-12 Thread Phillip M. Vector
THANK YOU!! :) That did the trick. :) Azadi Saryev wrote: > you need to reference the row as well: > > > > Azadi Saryev > Sabai-dee.com > http://www.sabai-dee.com/ > > > > Phillip M. Vector wrote: >> Azadi Saryev wrote: >> >>> hmm... are you really still using FONT tags??? ever heard of C

Re: Looping over database columns

2008-07-12 Thread Azadi Saryev
you need to reference the row as well: Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Phillip M. Vector wrote: > Azadi Saryev wrote: > >> hmm... are you really still using FONT tags??? ever heard of CSS and >> inline styles? >> but that's beside the point... >> > > Yes.. I am fo

Re: Dynamically adding XmlChildren - how to find the parent node

2008-07-12 Thread Dominic Watson
The project has now been updated. You could now do: attributes = StructNew(); attributes['id'] = 23 oXml.CreateElement('//[EMAIL PROTECTED]"#theId#"]', 'newelement', 'This is some element content.', attributes); You can also now supply an xml string to either CreateElement or Update a

Re: Looping over database columns

2008-07-12 Thread Phillip M. Vector
Azadi Saryev wrote: > hmm... are you really still using FONT tags??? ever heard of CSS and > inline styles? > but that's beside the point... Yes.. I am for special circumstances. :) > here goes: > > 1) your query is named POSITIONS, but in your code you refer to it as > POSITION - no S on the en

Re: Looping over database columns

2008-07-12 Thread Azadi Saryev
hmm... are you really still using FONT tags??? ever heard of CSS and inline styles? but that's beside the point... here goes: 1) your query is named POSITIONS, but in your code you refer to it as POSITION - no S on the end... 2) ... unless you refer to your var 'position' - but i have no idea wh

Re: Looping over database columns

2008-07-12 Thread Phillip M. Vector
I'm not sure what you are asking. Here is the code I'm using. #position#

Re: Jhzjshsnjsbejdbhdjdjkedjdkfjrkfjjfkjfkfkfjjddjjddirqqehzwn

2008-07-12 Thread Casey Dougall
hey. change your signature already Newbie! On Sat, Jul 12, 2008 at 12:48 PM, houseoffusion < [EMAIL PROTECTED]> wrote: > Sent from my iPhone > > ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Jhzjshsnjsbejdbhdjdjkedjdkfjrkfjjfkjfkfkfjjddjjddirqqehzwn

2008-07-12 Thread houseoffusion
Sent from my iPhone ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/CF-Tal

UHajzhs

2008-07-12 Thread houseoffusion
Hjdj Sent from my iPhone ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j Archive: http://www.houseoffusion.com/groups/

Re: Looping over database columns

2008-07-12 Thread Azadi Saryev
session[Permission] - Permission is a cf variable in this case, same as session.#Permission# session['Permission'] - refers to "Permission" key in session structure, same as session.Permission your Permission variable is list loop index. do you have that same loop when you do the ? Azadi Saryev S

Re: Looping over database columns

2008-07-12 Thread Phillip M. Vector
Ok.. That works.. But why when I do a cfdump on session[Permission], I get numbers (which I should) and when I do a #session[Permission]#, I get a Complex object types cannot be converted to simple values? Sorry for being dense... I still can't seem to pull the values from the session over the

Re: Looping over database columns

2008-07-12 Thread Azadi Saryev
if Position query returns one row: with multiple row returned by Position query, you could do something like: Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Phillip M. Vector wrote: > Basically the question becomes... How do I pull the value of a row that > I'm looping over and put

RE: Looping over database columns

2008-07-12 Thread Bobby Hartsfield
All of the columns are returned in #queryname.columnlist# you can also access column/row values with #queryname['columnname'][rowNumber]# -Original Message- From: Phillip M. Vector [mailto:[EMAIL PROTECTED] Sent: Saturday, July 12, 2008 10:40 AM To: CF-Talk Subject: Looping over database

Re: Looping over database columns

2008-07-12 Thread Phillip M. Vector
Basically the question becomes... How do I pull the value of a row that I'm looping over and put it as part of another variable? Phillip M. Vector wrote: > That helps... a bit.. > > But not fully. What if I want to do something like this.. > > > > > > So I get ...

Re: Looping over database columns

2008-07-12 Thread Phillip M. Vector
That helps... a bit.. But not fully. What if I want to do something like this.. So I get ... session.schedule = 0 session.calendar = 1 session.staff = 0 etc. Azadi Saryev wrote: > a select query returns a list of all columns in #queryname.columnlist# > varia

Re: Looping over database columns

2008-07-12 Thread Azadi Saryev
a select query returns a list of all columns in #queryname.columnlist# variable. loop over that. user array notation to return specific query column values. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Phillip M. Vector wrote: > >PermissionList="Schedule,Chat,Calendar,Games,Sta

Looping over database columns

2008-07-12 Thread Phillip M. Vector
#Positions.#permission## Ok.. this is probably really simple, But I can't think of the answer and I can't seem to find anything on google this morning.. I know the above code doesn't work. :) Any ideas how I can accomplish it so it prints out.. #po

Re: Parsing my authorize.net response list

2008-07-12 Thread Simon Free
Will, I ended up creating a function that cleaned up the data and built a structure out of it. It is in the office right now but i can send it to you on Monday. If you are trying to resolve the issue over the weekend, here are a few pointers. To resolve the empty list item issue, what I would r