|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||||
|
|||||
|
Sortable table for use on webpages
Can anyone point me in the direction of a better sortable table that I can use on a webpage?
I found this one: http://javascriptkit.com/script/script2/sorttable.shtml While it works for regular text as shown on our website here: http://www.team237.com/members.htm I would like to use it on my own site but incorporate links in the table, and also images, and sort by the link url, or image name I don't see why this should not work. My thinking is that it should recognize the The problem I found is that this Java Script based table ignores the sorting of the standard html formatting tags such as: Code:
<td><a href="http://www.imdb.com/title/tt0098987/" target="_blank"><center>Link</center></a></td> This is really irritating. By the way, the table sort js code depends on an external .js file that came with the table's examples which you have to place in the same root directory as your html file that is using the code. edit: I'm not to familiar with Javascript, but could my problem be that this external .js file is not defining the html image tags as something to sort?? Just a thought.. Is there any other way to code a sortable table that will recognize the html center and image tags as something to organize as well?? edit: What is used to sort the info on this page? http://www.chiefdelphi.com/forums/memberlist.php? Php?? Can that be used with images and links? This will also be helpful to know for the teams site to link pics to the people's individual names in the future. Last edited by Elgin Clock : 17-05-2005 at 12:59. |
|
#2
|
|||
|
|||
|
Re: Sortable table for use on webpages
Quote:
Code:
<?php
//Connect to the DB, you can either include a file that connects for widespread use..
include_once("./DB_Connect.php");
$request = mysql_query("SELECT * FROM `members` SORT BY `name` ASC");
echo '<table... blah blah';
while ($info = mysql_fetch_array($request))
{
echo '
<tr>
<td><a href="./members.php?id=', $info['ID'], '">', $info['name'], '</a></td>
</tr>'; //echo out member info..
}
echo '</table>';
mysql_free_result($request); // Not needed, just used to clear out the memory
?>
Dan Team 999 |
|
#3
|
|||||
|
|||||
|
Re: Sortable table for use on webpages
Not sure if you fixed it Elgin, but in case you/anyone else needs an answer. Try using CSS to center the text.
Code:
.center{
text-align: center;
}
Code:
<table>
<tr>
<td class="center">
Mike
</td>
</tr>
</table>
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| full table? | Shlomi32 | General Forum | 2 | 27-04-2005 10:03 |
| Distro block, maxi fuse box, and ground stem | ErichKeane | Electrical | 25 | 20-02-2004 07:19 |
| Lookup table generation tool | WillyC | Programming | 12 | 15-02-2004 21:01 |
| picture of 40 amps fuse holder and fuse | rcubes85 | Technical Discussion | 1 | 13-02-2003 16:03 |
| how do u hook up things through the fuse panel? | chrisw | Technical Discussion | 9 | 12-01-2002 19:51 |