Hi All,
I need some help or advice pls!
I have an intranet and part of it is the document manager. When a user clicks on a particular folder an iframe shows a list of documents. This list is shown using a number of tables and the problem is that if there is a great amount of documents being displayed the page takes ages to load (the page loads and one can see the documents but the explorer hangs for a couple of extra seconds then resumes!)
.. and i think that the problem lies within the number of tables i'm using! but i cannot find another solution..can you help me out!?
A part of the list is shown below (jsut one row!):
Thanks for your time and help!
Nick
I need some help or advice pls!
I have an intranet and part of it is the document manager. When a user clicks on a particular folder an iframe shows a list of documents. This list is shown using a number of tables and the problem is that if there is a great amount of documents being displayed the page takes ages to load (the page loads and one can see the documents but the explorer hangs for a couple of extra seconds then resumes!)
.. and i think that the problem lies within the number of tables i'm using! but i cannot find another solution..can you help me out!?
A part of the list is shown below (jsut one row!):
Code:
<div class="divMain">
<table class="tableList" bgcolor="#FFFFFF">
<tr >
<td width="95%" class="tdList"><p><b><u>Document1.pdf</u></b> (0.12 MB)<i></i>
<image src="/images/acrobat.gif" align="absbottom" width="20" height="20" alt="Open File" onclick="OpenLink(1574, 1);" onmouseover="this.style.cursor='hand';">
<image src="/images/view.gif" align="absbottom" alt="View Info." onclick="ViewDetails(1574);" onmouseover="this.style.cursor='hand';">
</p></td>
<td width="5%" class="tdList"><p align="center"><input type="checkbox" value="1574" name="check[1]" id="check_1"></p></td>
</tr>
</table>
<table class="tableList">
<tr bgcolor="#FFFFFF" id="inforow_1">
<td width="40%" class="tdList"><p>Here is a description of the document</p></td>
<td width="15%" class="tdList"><p align="center"><i>Jack Jones</i></p></td>
<td width="15%" class="tdList"><p>29/11/2005 09:47</p></td>
<td width="15%" class="tdList"><p>29/11/2005</p></td>
<td width="15%" class="tdList"><p>Nov 2005</p></td>
</tr>
</table>
</div>
Thanks for your time and help!
Nick