https://github.com/raoul2000/etablesorter
This class implements the TableSorter JQuery Plugin for Yii
https://github.com/raoul2000/etablesorter
Last synced: about 2 months ago
JSON representation
This class implements the TableSorter JQuery Plugin for Yii
- Host: GitHub
- URL: https://github.com/raoul2000/etablesorter
- Owner: raoul2000
- Created: 2012-06-10T18:55:23.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-06-10T20:04:06.000Z (almost 13 years ago)
- Last Synced: 2025-02-09T01:48:21.401Z (4 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
Awesome Lists containing this project
README
This Yii extension is a wrapper for the TableSorter [JQuery Plugin](http://tablesorter.com/docs/)
It allows client side table sorting with minimum effort.##Requirements
Yii 1.1 or above (but should work with older versions)
##Usage
To use this extension insert the ETableSorter widget in the view where the target table is
also displayed.~~~
[php]
widget('ext.etablesorter.ETableSorter',array(
'tableId' => 'myTable',
'theme' => 'blue',
'cancelSelection' => true,
'cssDesc' => 'styleHeader',
'cssAsc' => 'styleAsc',
)
);
?>
Last Name
First Name
Due
Web Site
Smith
John
[email protected]
$50.00
http://www.jsmith.com
Bach
Frank
[email protected]
$50.00
http://www.frank.com
Doe
Jason
[email protected]
$100.00
http://www.jdoe.com
Conway
Tim
[email protected]
$50.00
http://www.timconway.com
~~~
##Resources
* [Try out a demo - TableSorted Jquery page](http://tablesorter.com/docs/)