Question
Problem submitting cfform
I have a cfform with a cftree in it:
cfform name="myform" format="HTML">
<cftree name = "LocationChooser"format="applet"
required = "no"
completePath = "no"
appendKey = "no"
highlightHref = "no"
lookAndFeel = "windows"
font = "Verdana"
fontSize = "10"
italic = "no"
bold = "no"
height = "320"
width = "200"
vSpace = "10"
hSpace = "10"
align = "absmiddle"
border = "yes"
hScroll = "no"
vScroll = "yes"
notSupported = "Browser must support Java">
...some treeview code
</cftree>
</cfform>
I have two other normal html forms, here is one of them:
<form name="frmEngineerReport" method="post" action="rptWJBM_proc.cfm">
When I click the button to submit this form, I want to also submit the cfform. I need to do this to get the full path of currently selected node on the treeview. I can't put the tree in the form, because like i said there are two forms, and the treeview needed to get submited if either of them get submitted. So I would have to have two treeviews to have one on each form, which is unacceptable. Thanks in advance for any help.
cfform name="myform" format="HTML">
<cftree name = "LocationChooser"format="applet"
required = "no"
completePath = "no"
appendKey = "no"
highlightHref = "no"
lookAndFeel = "windows"
font = "Verdana"
fontSize = "10"
italic = "no"
bold = "no"
height = "320"
width = "200"
vSpace = "10"
hSpace = "10"
align = "absmiddle"
border = "yes"
hScroll = "no"
vScroll = "yes"
notSupported = "Browser must support Java">
...some treeview code
</cftree>
</cfform>
I have two other normal html forms, here is one of them:
<form name="frmEngineerReport" method="post" action="rptWJBM_proc.cfm">
When I click the button to submit this form, I want to also submit the cfform. I need to do this to get the full path of currently selected node on the treeview. I can't put the tree in the form, because like i said there are two forms, and the treeview needed to get submited if either of them get submitted. So I would have to have two treeviews to have one on each form, which is unacceptable. Thanks in advance for any help.
