Hi ,

Can any one help me to create a page with tablesorter.
I am new to the jquery.I am making a project with php+html+mysql.I
have a html page which displays students information in a table like
name,class,location.This information is taken from mysql through php
page.
I have gone through the following link which is very nice;
jQuery plugin: Tablesorter 2.0
tablesorter.com/docs/index.html

I like to make my students table also in the same manner.
So i followed whatever its mentioned in the website and created an
example,but i am not able to make it sortable.Steps what i did as
follows;
1) I downloaded jquery.tablesorter.zip and extracted the contents to C:
\tablesorter
2) Created a tablesorter.html page .
-------------------------------------------------------------------------------------------------------------------------
<head>
<script type="text/javascript" src="/tablesorter/jquery-latest.js"></
script>
<script type="text/javascript" src="/tablesorter/
jquery.tablesorter.js"></script>
</head>


<table id="myTable">
<thead>
<tr>
    <th>Last Name</th>
    <th>First Name</th>
    <th>Email</th>
    <th>Due</th>
    <th>Web Site</th>
</tr>
</thead>
<tbody>
<tr>
    <td>Smith</td>
    <td>John</td>
    <td>[email protected]</td>
    <td>$50.00</td>
    <td>http://www.jsmith.com</td>
</tr>
<tr>
    <td>Bach</td>
    <td>Frank</td>
    <td>[email protected]</td>
    <td>$50.00</td>
    <td>http://www.frank.com</td>
</tr>
<tr>
    <td>Doe</td>
    <td>Jason</td>
    <td>[email protected]</td>
    <td>$100.00</td>
    <td>http://www.jdoe.com</td>
</tr>
<tr>
    <td>Conway</td>
    <td>Tim</td>
    <td>[email protected]</td>
    <td>$50.00</td>
    <td>http://www.timconway.com</td>
</tr>
</tbody>
</table>

-----------------------------------------------------------------------------------------------------------------------------
But this is only coming as normal html page which is not flexible.Can
anybody help me..

Thanks in advance,
Celin

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to