cfselect question/problem

2008-12-30 Thread Les Mizzell
I have a cfselect used to select from a list of languages spoken thusly: cfselect name = lang required = No size = 5 multiple = Yes query = getLANGUAGES selected = #request.langLIST# value = id_lang display = lang /cfselect Selecting anything and adding new records to the

Re: cfselect question/problem

2008-12-30 Thread Les Mizzell
Figured it out finally . logic flow problem!! Thanks to all that scratched their heads a bit! So basically, I can't delete whatever was previously selected, I can only select something different. ~| Adobe® ColdFusion® 8

Re: cfselect question, simple one

2008-10-16 Thread Tony
=name_value note: concatenation syntax is db-specific - check your db manual for correct syntax to use! hth Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Tony wrote: hello ladies and gents. long time, no cf-talk... quick cfselect question for ya... thanks

Re: cfselect question, simple one

2008-10-16 Thread Tony
: hello ladies and gents. long time, no cf-talk... quick cfselect question for ya... thanks! Billing rate: br / cfselect name = billingRateID_fk query=request.billingRate value=id display=name (value) /cfselect

cfselect question, simple one

2008-10-15 Thread Tony
hello ladies and gents. long time, no cf-talk... quick cfselect question for ya... thanks! Billing rate: br / cfselect name = billingRateID_fk query=request.billingRate value=id display=name (value) /cfselect

Re: cfselect question, simple one

2008-10-15 Thread Azadi Saryev
=request.bilingRate value=id display=name_value note: concatenation syntax is db-specific - check your db manual for correct syntax to use! hth Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Tony wrote: hello ladies and gents. long time, no cf-talk... quick cfselect question for ya... thanks

Re: cfselect question, simple one

2008-10-15 Thread Charlie Griefer
-dee.com/ Tony wrote: hello ladies and gents. long time, no cf-talk... quick cfselect question for ya... thanks! Billing rate: br / cfselect name = billingRateID_fk query=request.billingRate value=id display=name (value) /cfselect

Re: CFSELECT Question

2007-02-08 Thread Benjamin Paige
With the HTML SELECT tag, I can populate the option with a query (for instance, a listing of all states from a database), and then using another query with lets say user information, I can have the users state selcted using two queryies and CFIF statements like this... Hey there is an open source

CFSELECT Question

2007-01-23 Thread Bruce Sorge
Hello list, With the HTML SELECT tag, I can populate the option with a query (for instance, a listing of all states from a database), and then using another query with lets say user information, I can have the users state selcted using two queryies and CFIF statements like this: select

RE: CFSELECT Question

2007-01-23 Thread Dave Watts
With the HTML SELECT tag, I can populate the option with a query (for instance, a listing of all states from a database), and then using another query with lets say user information, I can have the users state selcted using two queryies and CFIF statements like this: select

Re: CFSELECT Question

2007-01-23 Thread Charlie Griefer
cfselect query=qStates display=state_abv value=state_id selected=#qUserInfo.State_ID# i'm not a cfform user, so i'm not sure about the pound sign usage there. On 1/23/07, Bruce Sorge [EMAIL PROTECTED] wrote: Hello list, With the HTML SELECT tag, I can populate the option with a query (for

Re: CFSELECT Question

2007-01-23 Thread Bruce Sorge
On 1/23/07, Charlie Griefer [EMAIL PROTECTED] wrote: cfselect query=qStates display=state_abv value=state_id selected=#qUserInfo.State_ID# i'm not a cfform user, so i'm not sure about the pound sign usage there. Sweet. Thanks Charlie. Hope to see you at our first IECFUG once we get a

cfselect question

2001-12-19 Thread corrigan
Does anyone know of a way to display a default field when using cfselect and a query first? I've put an option tag between the cfselect and /cfselect tags and it displays it as the last entry. I would like it to display first. What I'm doing is using my states database to populate the select

RE: cfselect question

2001-12-19 Thread Tangorre, Michael T.
Put the option tag before the output query.. Then in the select tag, make the option selected. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 2:49 PM To: CF-Talk Subject: cfselect question Does anyone know of a way to display

SOLVED: cfselect question

2001-12-19 Thread corrigan
Message - From: Tangorre, Michael T. To: CF-Talk Sent: Wednesday, December 19, 2001 1:48 PM Subject: RE: cfselect question Put the option tag before the output query.. Then in the select tag, make the option selected. -Original Message- From: [EMAIL PROTECTED

RE: cfselect question

2001-12-19 Thread Bruce, Rodney (Contractor)
believe would get you what you want. (but watch my typing, was just done on the spur of the moment ;o) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 12:49 PM To: CF-Talk Subject: cfselect question Does anyone know

RE: SOLVED: cfselect question

2001-12-19 Thread Tangorre, Michael T.
: SOLVED: cfselect question OMG - do I feel stupid. Thanks Michael. I totally knew how to do it that way and my brain just locked up. Thanks for the nudge. I need a beer. Is it x-mas yet? I need a break! Michael Corrigan Programmer Endora Digital Solutions www.endoradigital.com 630/942-5211 x

RE: cfselect question

2001-12-19 Thread Bryan Love
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 11:49 AM To: CF-Talk Subject: cfselect question Does anyone know of a way to display a default field when using cfselect and a query first? I've put an option tag between the cfselect

cfselect question...

2001-07-03 Thread Jeff Fongemie
Hello cf-Talk, I'm using a CFSELECT on a page, and the selection determines the CFSELECT used on the following page. Is there a way to have another cfselect on the second page that will be the same as the CFSELECT on the first page, but will have what was just selected (on the first

Re: cfselect question...

2001-07-03 Thread Joseph Thompson
Have you had a chance to try the TwoSelectsRelated tag yet? It doesn't always play nice with a CFFORM but will with a little work. Hello cf-Talk, I'm using a CFSELECT on a page, and the selection determines the CFSELECT used on the following page. Is there a way to have another

RE: cfselect question...

2001-07-03 Thread Michael Bruce
You ought to look into cf_twoselectsrelated. This is a cool custom tag that uses JavaScript without the page reloads. Michael Bruce -Original Message- From: Jeff Fongemie [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 03, 2001 12:00 PM To: CF-Talk Subject: cfselect question... Hello

CFSELECT Question

2001-05-11 Thread Kevin Mansel
Ok, I know this tag pretty well, but what I am trying to do is combine two columns and do a little formatting to them, but have that come up in the display of the CFSELECT Tag, now i just get errors when i try to directly apply the formatting within the display value of the tag, can someone guide

RE: CFSELECT Question

2001-05-11 Thread Jann VanOver
. -Original Message- From: Kevin Mansel [mailto:[EMAIL PROTECTED]] Sent: Friday, May 11, 2001 10:31 AM To: CF-Talk Subject: CFSELECT Question Ok, I know this tag pretty well, but what I am trying to do is combine two columns and do a little formatting to them, but have that come up

cfselect question

2001-05-01 Thread Peter Tilbrook
I have this question. When a user signs up for membership they can choose from a list of Events they are interested in attending. It is a cfselect field populated from a database Memo field (so stored in the db as a comma delimited list). Later the user is allowed to modify their profile,

RE: cfselect question

2001-05-01 Thread David Shadovitz
Peter, You make two queries, one for the events for which the user has already signed up, and the other for all events. Populate the select element by looping over the all-events query. Use CFIF to see if the current event is in the list of events for which the user has already signed up.

RE: cfselect question

2001-05-01 Thread Zac
My question is what would be the best way to display the full list of events but have the events the user previously selected highlighted? Perhaps a series of check boxes. The items the user has already selected could be checked and the other options left unchecked.

cfselect question

2000-11-28 Thread .elizabeth.
Okay, pretty simple question here: I have a cfselect form field that is being populated by the LName column in my Contacts table: cfselect name="ID" required="yes" query="qContacts" value="ID" display="LName" The code above works fine; my select box gets populated with all the last names in

RE: cfselect question

2000-11-28 Thread Gieseman, Athelene
]] Sent: Tuesday, November 28, 2000 11:23 AM To: CF-Talk Subject: cfselect question Okay, pretty simple question here: I have a cfselect form field that is being populated by the LName column in my Contacts table: cfselect name="ID" required="yes" query="qContacts&q

Re: cfselect question

2000-11-28 Thread paul smith
Sure. Do it in your query SELECT Name AS FName + LName (use syntax for your DB here) best, paul At 12:23 PM 11/28/00 -0500, you wrote: Okay, pretty simple question here: I have a cfselect form field that is being populated by the LName column in my Contacts table: cfselect name="ID"

simple cfselect question

2000-05-25 Thread Bridget Corkery
Hello, I have built a drop down menu, but would like to have the option of selecting an option and having the selected item mailed to an e-mail address. Could anyone help me with this? Thanks, Bridget -- Archives: