Advertisement
Advertisement
| 08.05.2008 at 09:13AM PDT, ID: 23622761 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: |
<cfform action="treedetails.cfm" target="_blank" name="form1" method="post" preservedata="true" format="flash" timeout="300">
<cfformgroup type="hdividedbox">
<cfformgroup type="vbox" width="440">
<cftree name="PearsonTree"
hscroll="yes"
height="400"
width="400"
border="no"
appendkey="yes" vscroll="no">
<cftreeitem query="Site_Equipment" queryasroot="no"
value="SiteName, FloorName, RoomName, ID"
display="SiteName, FloorName, RoomName, Label"
expand="no" >
</cftree>
<!--- a hidden field that updates the tree node value each time it changes --->
<cfoutput>
<cfinput type="hidden" label="myinput" name="myinput" id="myinput" bind="{PearsonTree.selectedNode.getProperty('data').value}">
<cfinput name="Submit" type="submit" value="View Details">
</cfoutput>
</cfformgroup>
<cfformgroup type="vbox">
<!--- Start Form with tabs --->
<cfformgroup type="tabnavigator">
<cfformgroup type="page" label="General">
<cfoutput>
<!--- Equipment details that I'm not sure how to bind to the tree to get the data --->
<cfinput type="text"
label="Building:"
name="Site"
bind=""
size="50"
maxlength="50">
</cfoutput>
<cfelse>
</cfif>
</cfformgroup>
<cfformgroup type="page" label="Details">
</cfformgroup>
<cfformgroup type="page" label="Scope & Interval">
</cfformgroup>
<cfformgroup type="page" label="Maintenance Log">
</cfformgroup>
<cfformgroup type="page" label="Upstream Devices">
</cfformgroup>
<cfformgroup type="page" label="Loads">
</cfformgroup>
</cfformgroup>
</cfformgroup>
</cfformgroup>
</cfform>
|