Advertisement
Advertisement
| 06.22.2008 at 09:55AM PDT, ID: 23505848 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: |
<cfquery name="qtype" datasource="security">
SELECT * from ctypes
</cfquery>
<script>
function showDesc(theSel){
var theForm = theSel.form;
var theDesc = theSel.options[theSel.selectedIndex].getAttribute("descript");
theForm.description.value = theDesc;
}
</script>
<select name="ltype" onChange="showDesc(this)" >
<cfoutput query="qtype">
<option value="#id#|#type#" descript="#tdescription#" tabindex="3">#type#</option>
</cfoutput>
</select>
|