Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mithunsatheesh/tablefixer
Jquery plugin for fixing cells of a table
https://github.com/mithunsatheesh/tablefixer
Last synced: about 1 month ago
JSON representation
Jquery plugin for fixing cells of a table
- Host: GitHub
- URL: https://github.com/mithunsatheesh/tablefixer
- Owner: mithunsatheesh
- Created: 2012-05-24T05:28:57.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-12T11:21:55.000Z (over 12 years ago)
- Last Synced: 2024-04-15T03:09:31.383Z (9 months ago)
- Language: JavaScript
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.textile
Awesome Lists containing this project
README
h1. Table Fixer jQuery Plugin
*Version:* 1.0
*License:* "Dual GPL + MIT"
*Author:* "Mithun Satheesh"
h2. About
Table Fixer is a jquery plugin for fixing columns,rows or even individual cells of a table. Just add "fixer" class to the cells you want to have static functionality and call the plugin.
h2. Browser Support
Tested on IE8+, Safari, Chrome, Firefox 3+
h2. Use
Just call plugin with the table id and then give class fixer to the cells you want to be fixed.
h3. javascript
$(document).ready(function(){$('#roll').doFixColumn();
});h3. html
samplesample
samplesample
h2. Options
This Plugin provides following options.
You can use a custom class to fix the cells and mention the class name in variable fix.
The background color and font color for the fixed cells may be defined using variables background and color.
Also the width and height for the holding div container may be set using tableWidth and tableHeight variables.
h3. html
samplesample
samplesample
h3. JS
$(document).ready(function(){
$('#roll').doFixColumn({
background : "#09D",
color : "#FFF",
fix:"custom",
tableWidth:'100%',
tableHeight:'100%'
});
});h2. Changelog
*Version 1.0*
* Initial Release