Hi every one,
I am using CF_ThreeSelectsRelated to populate 3 drop
down lists from the database.But I am facing a wierd
problem.I am unable to add a textfield in the form
where CF_ThreeSelectsRelated is present.Its giving me 
a javascript error.
Thanks in advance:
The code is as follows:
+++++++++++++++++++++++++++++++++++++++++++++++++++++++
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">

<html>
<head>
        <title>Untitled</title>
</head>
<cfquery name="getdata"
         datasource="catalog"
         dbtype="ODBC">
SELECT      MnGrp, MnGrp_Desc, ProductType, 
                    ProductType_Desc, Publisher, Publisher_Desc
FROM        globalkeys_flat
</cfquery>
<body>

<FORM ACTION="/action/result.cfm" METHOD="POST"
onSubmit="return require_Sel1AndSel2AndSel3()"
NAME="FormX">


<CF_ThreeSelectsRelated
  QUERY="GetData"
        HTMLAFTEREACHRADIO1="<BR>"
        HTMLAFTER1="<br>"
        HTMLAFTER2="<BR>"
        NAME1="Sel1"
        NAME2="Sel2"
        NAME3="sel3"
        DEFAULT1="1"
        DISPLAY1="Mngrp_desc"
        DISPLAY2="Producttype_Desc"
        DISPLAY3="Publisher_Desc"
        VALUE1="mngrp"
        VALUE2="producttype"
        VALUE3="Publisher"
        SIZE2="1"
        SIZE3="1"
        EXTRAOPTIONS2="1"
        EXTRAOPTIONS3="5"
        WIDTH2="250"
        WIDTH3="250"
        FORCEWIDTH2="80"
        FORCEWIDTH3="80"
        AUTOSELECTFIRST="Yes"
        FORM="FormX">
        <br>
        <input type="Text" name="text1" size="30">
 <BR><INPUT TYPE="Submit">
 
</FORM>




</body>
</html>
+++++++++++++++++++++++++++++++++++++++++++++++++++++++


__________________________________________________
Do You Yahoo!?
Yahoo! Calendar - Get organized for the holidays!
http://calendar.yahoo.com/
------------------------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]

Reply via email to