|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 07/20/2009 at 02:20PM PDT, ID: 24585626 | Points: 250 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: |
<cftree name="schemaTree" width="300px" appendkey="yes" completepath="yes" format="html">
<cfloop query="schemaList">
<cfif schemaList.column_id eq 0>
<cftreeitem value="0" display="#schemaList.Tablename#" img="document" expand="#IIF(schemaList.Tablename eq tblName, 'true', 'false')#"
href="JavaScript: displayTable('#schemaList.Tablename#', #schemaList.object_id#, '#schemaList.PropertyType#', '#schemaList.PropertyValue#');">
<cfelse>
<cftreeitem value="#schemaList.column_id#" img="element" parent="0" expand="#IIF(schemaList.ColumnName eq colName, 'true', 'false')#"
display="#schemaList.ColumnName#"
href="JavaScript: displayColumn(#schemaList.object_id#, #schemaList.column_id#, '#schemaList.ColumnName#', '#schemaList.PropertyType#', '#schemaList.PropertyValue#');">
</cfif>
</cfloop>
</cftree>
|
Advertisement