011 some navigation

This commit is contained in:
msyu
2025-08-23 18:38:17 +03:00
parent 571e5e02dc
commit 9d7eb567ae
10 changed files with 838 additions and 140 deletions
+19
View File
@@ -0,0 +1,19 @@
<cfparam name="ATTRIBUTES.query" type="query"/>
<cfif thisTag.executionMode IS "end" OR NOT thisTag.hasEndTag>
<table class="worktable">
<tr>
<cfoutput>
<cfloop list=#queryColumnList(ATTRIBUTES.query)# item="col">
<th>#col#</th>
</cfloop>
</cfoutput>
</tr>
<cfoutput query=#ATTRIBUTES.query#>
<tr>
<cfloop list=#queryColumnList(ATTRIBUTES.query)# item="col">
<td>#ATTRIBUTES.query[col]#</td>
</cfloop>
</tr>
</cfoutput>
</table>
</cfif>