Useful Coding Tools and JavaScript Libraries For Web Developers - Smashing Magazine:
'via Blog this'
Sunday, October 30, 2011
Thursday, October 27, 2011
Tuesday, October 11, 2011
Monday, October 10, 2011
Panes Freezer - The jquery plugin
About
When working with large table, it gets a bit frustrating, when you go to read the data in a distant row or column and the headings at the top of the page or down the side of the sheet disappear.If you are like me, you're never quite sure if you are looking in the right spot so you scroll back and forth trying to read first the heading and then the data, heading then the data, until you're almost sure you have it right.
To avoid this back and forth waste of time, use this jquery plugin. This plugin allows you to lock specific rows and columns so that they will always be visible on screen no matter how far you scroll to the right or down.
Idea of this plugin is no existing coding modification need to be done, just with additional <DIV> and call the plugin code shown below, that's all!
$('#mydiv_1_0').panesfreezer({
'headerrow': 1,
'headercolumn' : 1
});
Demo
Supported browser
Below table show the supported browser for this pluginNo | Browser | Version | OS | Support |
---|---|---|---|---|
1 | Google Chrome | 14.0.835.202 m | Windows 7 | Y |
2 | Firefox | 7.0 | Windows 7 | Y |
3 | Safari | 5.1 | Windows 7 | Y |
4 | Internet Explorer | 9 | n/a | n |
Links
jquery plugin page - http://plugins.jquery.com/project/panesfreezerGithub page - https://github.com/comcrazy/Panes-Freezer/
Author blog - http://comcrazy-devcenter.blogspot.com/ @ http://comcrazy.info/
Thursday, October 6, 2011
MySQL Schema and Index Optimization Example
Transaction logging is a essential activity for telco industry. These records are important to resolve customer dispute or technical support activity. This post will discuss about MySQL schema and index optimization on a table that store huge amount (20 Millions ++ per day in one table) of transaction record.
Subscribe to:
Posts (Atom)