Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
James168 #1
Selection change query
Hi,
I have problems that passing a JavaScript variable back to CF in a JavaScript
item change event. For example, a user selects a state in one dropdown list,
all the cities in the state should appear in another dropdown list.
Try One method:
<cfset STvar = ''CA'> -- Works if is set to constant value
<cfset STvar = ''{stselect.text}'> -- Not Work if try to read a field
<cfquery name="city" datasource="xxx".
SELECT CITY FROM WEB."CITY" WHERE (STCODE = '#STvar#' )
</cfquery>
Try method 2:
<cfset STsel = 'AL' > Works if is set to constant
<cfset STsel = "{stselect.selectedItem.data}" > No Work - - after the
<cfquery>, it returns me the correct SQL syntax, but not the result of the
query.
<cfset strSQL= "SELECT City FROM WEB.""STATE"" WHERE (STCODE = '" &
variables.STsel & "' )">
<cfquery name="city" datasource="xxx">
#Evaluate('strSQL')#
</cfquery>
In the last method, how can I get the query result of the #Evaluate('strSQL')#
if it returns the correct SQL statement. How can I read a selection text
field into a CfSet varialbe before I click the POST Submit button.
Thanks,
James:confused;
James168 Guest
-
Custom Dag&Drop in Tree + selection change
Hello. I display a tree from which only some items must be draggable, so I couldn't use the default D&D behaviour and had to reproduce it all by... -
How to change boot selection
I just installed ubuntu on a 40 gb partition on my windows C: drive so I can boot windows XP or several variations of ubuntu. Is there a way to... -
display query in selection
I want to create a drop down, or selection list with a query from a db. Can anyone give a hint or explain how to do this? I tried cfselect but can't... -
CGI popup_menu does not change default selection
Hi, According to the doc, -default argument to popup_menu sets the default selection. It does not seem to work for me. I carefully examined the... -
change selection color in cxtra stringgrid
hi to all, how can i change the selection color (blue==>gray) in the cxtra stringGrid? tnx -
adonis1976 #2
Re: Selection change query
James,
I didnt understand your code, but try this thing
have this in your cfm file
<cfif isDefined(form.statename)>
<cfquery name="qGetcity" datasource="datasourcename">
SELECT city from web
where stcode = '#form.statename#'
</cfif>
<form>
<select name="statename" onChange=form.submit()>
<option value="AZ">Arizona</option>
adonis1976 Guest



Reply With Quote

