I'm using your pluging for my Intranet project, it's great.

However, I would like to know how to use your plugin together with
prototype+scriptaculous.  Because there are some pages that I've
already applied
those library, but I want to add tablesort function to the pages--and
I love to use yours.
(for the others, I'm too stupid to use it)

Below is how I place the code in the page.  Many many thanks for your
guidance.

-----My Code-----
<head>

<script type="text/javascript">
var $j = jQuery.noConflict();
</script>

<script type="text/javascript">
var sortVesselList = function() {
    $j('vesselList').tableSorter({
        sortColumn: 'Arrival Date',
        sortClassAsc: 'headerSortUp',
        sortClassDesc: 'headerSortDown',
        headerClass: 'header',
        stripingRowClass: ['even','odd'],
        stripeRowsOnStartUp: true,
    });
};
</script>


<script type="text/javascript">
var getVesselListByMonth = function()
{ $j("#VesselListDisplay").load('http://localhost/phpservices/
vesselSchedule_getListByMonth.php',{thismonth:200704},sortVesselList);
};
$j(document).ready(function() {
    getVesselListByMonth();
});
</script>
</head>
-----End of My Code-----

Reply via email to