Ok on my coldfusion page I generate a long list using tables. I loop through a query and display everything on a page. The problem is the user has to scroll down a really big page to see all the entries.
So i decided to put a layer on the page to display the list in a box with scroll bars on the side. But here is the problem the layer only works if i dont have columns in it.
Here is my code---
So instead of having the spaces I want the data to be in colums with column headers in a layer. Can someone help please, I have tried a number of combinations, but it just doesnt work! Thanks
So i decided to put a layer on the page to display the list in a box with scroll bars on the side. But here is the problem the layer only works if i dont have columns in it.
Here is my code---
Code:
<ilayer name="scroll1" width=100% height="200" clip="0,0,100%,200">
<layer name="scroll2" width=100% height=200 bgColor="white">
<div id="scroll3" style="width:100%;height:200px;background-color:white;overflow:scroll">
<cfloop query="MyQuery">
<input name="checkbox1" type="checkbox" value="#ID#"> #Description# #Date#
<br>
</cfloop>
</div>
</layer>
</ilayer>
So instead of having the spaces I want the data to be in colums with column headers in a layer. Can someone help please, I have tried a number of combinations, but it just doesnt work! Thanks