<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blogfreakz - Web Design and Web Development resources &#187; Table</title>
	<atom:link href="http://blogfreakz.com/category/table/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>A site dedicated to keeping up with the latest trends on Web Design</description>
	<lastBuildDate>Mon, 21 May 2012 02:24:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Create a CSS3 Table with jQuery Hover Effect</title>
		<link>http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/</link>
		<comments>http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/#comments</comments>
		<pubDate>Fri, 23 Mar 2012 02:57:20 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=26399</guid>
		<description><![CDATA[Tables are  essential in representing organized data yet somehow they’re relatively left behind in the design department. That’s why it is always a welcome treat to come across tutorials like this one from Catalin Rosu. Sample screenshot of end product In this tutorial we&#8217;re going to use CSS3 to design the table and jQuery to [...]]]></description>
			<content:encoded><![CDATA[<p>Tables are  essential in representing organized data yet somehow they’re relatively left behind in the design department. That’s why it is always a welcome treat to come across tutorials like this one from <a href="http://www.red-team-design.com/"><strong>Catalin Rosu</strong></a>.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-26400" title="Table" src="http://blogfreakz.com/wp-content/uploads/2012/03/Table.jpg" alt="Table Create a CSS3 Table with jQuery Hover Effect" width="521" height="376" /><strong><em>Sample screenshot of end product</em></strong></p>
<p>In this tutorial we&#8217;re going to use CSS3 to design the table and jQuery to create its cool hover effect. The hover effect helps highlight the rows for the user while adding a touch of color to the table; you could say that it serves both <span style="text-decoration: underline;">form and function</span>.</p>
<p><strong>CSS3</strong></p>
<p>For the table and the rounded corners:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">table {</span></pre>
<pre><span style="color: #003366;">*border-collapse: collapse;   /* IE7 and lower */</span></pre>
<pre><span style="color: #003366;">border-spacing: 0;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">th:first-child {</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 6px 0 0   0;</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius: 6px   0 0 0;</span></pre>
<pre><span style="color: #003366;">border-radius: 6px 0 0 0;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">th:last-child {</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 0 6px 0   0;</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius: 0   6px 0 0;</span></pre>
<pre><span style="color: #003366;">border-radius: 0 6px 0 0;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p>This part is for the hover effect:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">.bordered tr:hover</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">background: #fbf8e9;</span></pre>
<pre><span style="color: #003366;">-o-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-webkit-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-moz-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-ms-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p>Since not all of this supports CSS3, you can use this <strong>jQuery alternative</strong> instead:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">$('.bordered tr').mouseover(function(){</span></pre>
<pre><span style="color: #003366;">$(this).addClass('highlight');</span></pre>
<pre><span style="color: #003366;">}).mouseout(function(){</span></pre>
<pre><span style="color: #003366;">$(this).removeClass('highlight');</span></pre>
<pre><span style="color: #003366;">});</span></pre>
</td>
</tr>
</tbody>
</table>
<p>And here is the class, which is basically the <em>.bordered tr:hover</em> duplicate:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">.highlight</span></pre>
<pre><span style="color: #003366;">{</span></pre>
<pre><span style="color: #003366;">background: #fbf8e9;</span></pre>
<pre><span style="color: #003366;">-o-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-webkit-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-moz-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-ms-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">transition: all 0.1s ease-in-out;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
</td>
</tr>
</tbody>
</table>
<p>Here&#8217;s the full and complete CSS code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">body {</span></pre>
<pre><span style="color: #003366;">width: 600px;</span></pre>
<pre><span style="color: #003366;">margin: 40px auto;</span></pre>
<pre><span style="color: #003366;">font-family: 'trebuchet   MS', 'Lucida sans', Arial;</span></pre>
<pre><span style="color: #003366;">font-size: 14px;</span></pre>
<pre><span style="color: #003366;">color: #444;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">table {</span></pre>
<pre><span style="color: #003366;">*border-collapse: collapse;   /* IE7 and lower */</span></pre>
<pre><span style="color: #003366;">border-spacing: 0;</span></pre>
<pre><span style="color: #003366;">width: 100%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.bordered {</span></pre>
<pre><span style="color: #003366;">border: solid #ccc 1px;</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 6px;</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius: 6px;</span></pre>
<pre><span style="color: #003366;">border-radius: 6px;</span></pre>
<pre><span style="color: #003366;">-webkit-box-shadow: 0 1px 1px   #ccc;</span></pre>
<pre><span style="color: #003366;">-moz-box-shadow: 0 1px 1px   #ccc;</span></pre>
<pre><span style="color: #003366;">box-shadow: 0 1px 1px   #ccc;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.bordered tr:hover {</span></pre>
<pre><span style="color: #003366;">background: #fbf8e9;</span></pre>
<pre><span style="color: #003366;">-o-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-webkit-transition: all   0.1s ease-in-out;</span></pre>
<pre><span style="color: #003366;">-moz-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-ms-transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">transition: all 0.1s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.bordered td, .bordered th {</span></pre>
<pre><span style="color: #003366;">border-left: 1px solid   #ccc;</span></pre>
<pre><span style="color: #003366;">border-top: 1px solid #ccc;</span></pre>
<pre><span style="color: #003366;">padding: 10px;</span></pre>
<pre><span style="color: #003366;">text-align: left;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.bordered th {</span></pre>
<pre><span style="color: #003366;">background-color: #dce9f9;</span></pre>
<pre><span style="color: #003366;">background-image:   -webkit-gradient(linear, left top, left bottom, from(#ebf3fc), to(#dce9f9));</span></pre>
<pre><span style="color: #003366;">background-image:   -webkit-linear-gradient(top, #ebf3fc, #dce9f9);</span></pre>
<pre><span style="color: #003366;">background-image:    -moz-linear-gradient(top, #ebf3fc,   #dce9f9);</span></pre>
<pre><span style="color: #003366;">background-image:     -ms-linear-gradient(top, #ebf3fc,   #dce9f9);</span></pre>
<pre><span style="color: #003366;">background-image:      -o-linear-gradient(top, #ebf3fc,   #dce9f9);</span></pre>
<pre><span style="color: #003366;">background-image:         linear-gradient(top, #ebf3fc,   #dce9f9);</span></pre>
<pre><span style="color: #003366;">-webkit-box-shadow: 0 1px 0   rgba(255,255,255,.8) inset;</span></pre>
<pre><span style="color: #003366;">-moz-box-shadow:0 1px 0   rgba(255,255,255,.8) inset;</span></pre>
<pre><span style="color: #003366;">box-shadow: 0 1px 0   rgba(255,255,255,.8) inset;</span></pre>
<pre><span style="color: #003366;">border-top: none;</span></pre>
<pre><span style="color: #003366;">text-shadow: 0 1px 0   rgba(255,255,255,.5);</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.bordered td:first-child, .bordered th:first-child {</span></pre>
<pre><span style="color: #003366;">border-left: none;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.bordered th:first-child {</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 6px 0 0   0;</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius: 6px   0 0 0;</span></pre>
<pre><span style="color: #003366;">border-radius: 6px 0 0 0;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.bordered th:last-child {</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 0 6px 0   0;</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius: 0   6px 0 0;</span></pre>
<pre><span style="color: #003366;">border-radius: 0 6px 0 0;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.bordered tr:last-child td:first-child {</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 0 0 0   6px;</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius: 0 0   0 6px;</span></pre>
<pre><span style="color: #003366;">border-radius: 0 0 0 6px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.bordered tr:last-child td:last-child {</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 0 0 6px   0;</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius: 0 0   6px 0;</span></pre>
<pre><span style="color: #003366;">border-radius: 0 0 6px 0;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>So that covers both the CSS3 and jQuery portion of the tutorial. As for the HTML, all you have to do is use standard table tags in order to call the CSS styling, and you have to remember to do this:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;table&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>Here’s a comparison of the table, with and without CSS3 support (notice the corners):</p>
<p><img class="aligncenter size-full wp-image-26401" title="Table comparison" src="http://blogfreakz.com/wp-content/uploads/2012/03/Table-comparison.jpg" alt="Table comparison Create a CSS3 Table with jQuery Hover Effect" width="614" height="214" /></p>
<p>And there you go!<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/" title="css3 table">css3 table</a></li>
<li><a href="http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/" title="jquery hover effect">jquery hover effect</a></li>
<li><a href="http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/" title="css3 table design">css3 table design</a></li>
<li><a href="http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/" title="css table design">css table design</a></li>
<li><a href="http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/" title="jquery hover effects">jquery hover effects</a></li>
<li><a href="http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/" title="tr:hover">tr:hover</a></li>
<li><a href="http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/" title="table css3">table css3</a></li>
<li><a href="http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/" title="jquery hover">jquery hover</a></li>
<li><a href="http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/" title="jquery cool table">jquery cool table</a></li>
<li><a href="http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/" title="effect to table for website">effect to table for website</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/create-a-table-with-jquery-hover-effect-with-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TableScroll: Create Scrollable Tables With jQuery</title>
		<link>http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/</link>
		<comments>http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 02:01:14 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25592</guid>
		<description><![CDATA[Sometimes, inserting a table with lots of tubular data presents space issues in web design. But thanks to jQuery plugins like tableScroll from farinspace, the size of our tables won’t have to be dependent on the amount of data it contains. Click on the image above to get download options, available in compressed formats: TAR, [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes, inserting a table with lots of tubular data presents space issues in web design. But thanks to jQuery plugins like <strong><a href="http://www.farinspace.com/jquery-scrollable-table-plugin/">tableScroll</a></strong> from<strong> <a href="http://www.farinspace.com/">farinspace</a></strong>, the size of our tables won’t have to be dependent on the amount of data it contains.</p>
<p style="text-align: center;"><a href="https://github.com/farinspace/jquery.tableScroll/archives/master" target="_blank"><img class="aligncenter size-full wp-image-25593" title="TableScroll" src="http://blogfreakz.com/wp-content/uploads/2012/02/TableScroll.jpg" alt="TableScroll TableScroll: Create Scrollable Tables With jQuery" width="501" height="206" /></a><strong>Click on the image above to get download options, available in compressed formats: TAR, GZ, and ZIP.</strong></p>
<p>This useful plugin converts a properly formatted table into a scrollable table. It manipulates the table by placing the contents within a DIV, while creating a couple of other elements.</p>
<p>So far it has been successfully tested in Chrome, FireFox 3.6, Safari 4, and also IE6 and 8 running on Windows platform. For more updated info about browser compatibility, you may check out the comments on the plugin’s main page <strong><a href="http://www.farinspace.com/jquery-scrollable-table-plugin/">here</a></strong>, or the developer’s page over at <strong><a href="https://github.com/farinspace/jquery.tableScroll">GitHub</a></strong>.</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/" title="jquery tablescroll">jquery tablescroll</a></li>
<li><a href="http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/" title="jquery table scroll">jquery table scroll</a></li>
<li><a href="http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/" title="jquery scrollable table">jquery scrollable table</a></li>
<li><a href="http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/" title="jquery scroll table">jquery scroll table</a></li>
<li><a href="http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/" title="jquery tablescroll plugin">jquery tablescroll plugin</a></li>
<li><a href="http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/" title="jquery tablescroll js">jquery tablescroll js</a></li>
<li><a href="http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/" title="scrollable tables">scrollable tables</a></li>
<li><a href="http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/" title="table web design">table web design</a></li>
<li><a href="http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/" title="tablescroll">tablescroll</a></li>
<li><a href="http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/" title="jquery Scrollable Tables">jquery Scrollable Tables</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/tablescroll-create-scrollable-tables-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EditableGrid &#8211; Turn HTML Tables Into Advanced Editable Components</title>
		<link>http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/</link>
		<comments>http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 04:01:03 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Table]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=9634</guid>
		<description><![CDATA[EditableGrid is an open source Javascript library aimed at turning HTML tables into advanced editable components. It focuses on simplicity: only a few lines of code are required to get your first table up and running. Originally, EditableGrid was a component developed to be used in Timetrack, an online time tracking and invoicing tool. Thereafter, [...]]]></description>
			<content:encoded><![CDATA[<p><a title="EditableGrid" rel="nofollow" href="http://www.webismymind.be/editablegrid" target="_blank">EditableGrid</a> is an open source Javascript library aimed at turning HTML tables into advanced editable components. 			It focuses on simplicity: only a few lines of code are required to get your first table up and running.</p>
<p><span id="more-9634"></span><a rel="nofollow" href="http://www.webismymind.be/editablegrid"><img class="aligncenter size-full wp-image-9636" title="editablegrid" src="http://blogfreakz.com/wp-content/uploads/2010/09/editablegrid.jpg" alt="editablegrid EditableGrid   Turn HTML Tables Into Advanced Editable Components" width="600" height="450" /></a></p>
<p>Originally, <strong>EditableGrid</strong> was a component developed to be used in <a rel="nofollow" href="http://www.timetrackonline.be/">Timetrack</a>, an online time tracking and invoicing tool. 			Thereafter, this work has been factorized into an external library.</p>
<h3>Features</h3>
<ul>
<li>Load grid from XML or attach to an existing HTML table</li>
<li>Simple to use and easy integration into existing web applications</li>
<li>Each column is typed (string, integer, double, boolean, url, email, date)</li>
<li>Edit cells with a suitable editor, according to the column type (eg. checkbox for boolean)</li>
<li>Possibility to declare a list of possible values for the cells of a column (statically or in Javascript)</li>
<li>Management of unit, precision and NaN values for numeric columns</li>
<li>Built-in validators for columns of type integer, double, url, email and date</li>
<li>Possibility to plug your own cell renderers, editors and validators</li>
<li>Sort columns accordingly to their types, by clicking on the column header</li>
<li>PHP binding: build your grid in PHP and let it generate the XML file</li>
<li>Filtering of the grid</li>
<li>Insert and remove rows</li>
<li>Open Flash Chart integration to render charts from the grid data (the chart can follow when editing data or sorting columns)</li>
<li>Callbacks for all events: load, edition, sorting, etc.</li>
</ul>
<p class="download"><strong>Requirements</strong>:<br />
<strong>Demo</strong>: <a title="Demo" href="http://www.webismymind.be/editablegrid" target="_blank">http://www.webismymind.be/editablegrid</a><br />
<strong>License</strong>: GPL license</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/" title="jquery editable table">jquery editable table</a></li>
<li><a href="http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/" title="cakephp editable grid">cakephp editable grid</a></li>
<li><a href="http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/" title="grilla editable cakephp">grilla editable cakephp</a></li>
<li><a href="http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/" title="cakephp editable table">cakephp editable table</a></li>
<li><a href="http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/" title="editable html table">editable html table</a></li>
<li><a href="http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/" title="editable table html">editable table html</a></li>
<li><a href="http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/" title="editablegrid">editablegrid</a></li>
<li><a href="http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/" title="cakephp flexigrid">cakephp flexigrid</a></li>
<li><a href="http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/" title="flexigrid cakephp">flexigrid cakephp</a></li>
<li><a href="http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/" title="jquery editable xml table">jquery editable xml table</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/javascript/editablegrid-turn-html-tables-into-advanced-editable-components/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TableKit &#8211; Sortable Resizable Editable HTML Table</title>
		<link>http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/</link>
		<comments>http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 18:46:59 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Prototype/script.aculo.us]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[prototype]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=9055</guid>
		<description><![CDATA[TableKit is a collection of HTML table enhancements using the Prototype framework. TableKit currently implements row striping, column sorting, column resizing and cell editing using Ajax. TableKit allow us to sort the column, by click the table header cells, resize the column by dragging the right border of a header cell, click a cell in [...]]]></description>
			<content:encoded><![CDATA[<p><strong>TableKit</strong> is a collection of HTML table enhancements using the <a title="Prototype homepage" rel="nofollow" href="http://prototypejs.org/">Prototype</a> framework. TableKit currently implements row striping, column sorting, column resizing and cell editing using Ajax.</p>
<p><span id="more-9055"></span></p>
<p><a rel="nofollow" href="http://millstream.com.au/upload/code/tablekit/index.html"><img class="aligncenter size-full wp-image-9056" title="tablekit" src="http://blogfreakz.com/wp-content/uploads/2010/08/tablekit.jpg" alt="tablekit TableKit   Sortable Resizable Editable HTML Table" width="600" height="200" /></a></p>
<p>TableKit allow us to sort the column, by click the table header cells, resize the column by  dragging the right border of a header cell, click a cell in the table  body to edit the value.</p>
<p class="download"><strong>Requirements</strong>: Prototype framework<br />
<strong>Demo</strong>: <a rel="nofollow" href="http://millstream.com.au/upload/code/tablekit/index.html" target="_blank">http://millstream.com.au/upload/code/tablekit/index.html</a><br />
<strong>License</strong>: MIT</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/" title="html5 sortable table">html5 sortable table</a></li>
<li><a href="http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/" title="html5 editable table">html5 editable table</a></li>
<li><a href="http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/" title="editable html table">editable html table</a></li>
<li><a href="http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/" title="tablekit jquery">tablekit jquery</a></li>
<li><a href="http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/" title="html5 sortable">html5 sortable</a></li>
<li><a href="http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/" title="html5 table sortable">html5 table sortable</a></li>
<li><a href="http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/" title="jquery tablekit">jquery tablekit</a></li>
<li><a href="http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/" title="html5 table editable">html5 table editable</a></li>
<li><a href="http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/" title="tablekit">tablekit</a></li>
<li><a href="http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/" title="sortable table html5">sortable table html5</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/table/tablekit-sortable-resizable-editable-html-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>table2chart &#8211; Generates Charts from Data Tables MooTools Plugin</title>
		<link>http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/</link>
		<comments>http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 03:23:58 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Table]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=8176</guid>
		<description><![CDATA[table2chart is MooTools that generates charts from accessible data tables. So, you can take a simple, valid and accessible data table and it gets automatically converted to a pie chart. Simply add the script to the end of the body and it&#8217;ll converts all the table with a class called &#8216;toChart&#8217;. You can define the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>table2chart</strong> is MooTools that generates charts from accessible data  tables. So, you can take a simple, valid and accessible data table and it gets automatically converted to a pie chart.</p>
<p><span id="more-8176"></span><a rel="nofollow" href="http://github.com/thinkphp/table2chart/"><img class="aligncenter size-full wp-image-8406" title="tabletochart" src="http://blogfreakz.com/wp-content/uploads/2010/08/tabletochart.jpg" alt="tabletochart  table2chart   Generates Charts from Data Tables MooTools Plugin" width="600" height="266" /></a></p>
<p>Simply add the  script to the end of the body and it&#8217;ll converts all the table with a class called &#8216;toChart&#8217;.  You can define the size and the colour within the attribute class of the  table.</p>
<p class="download"><strong>Requirements</strong>: Mootools framework<br />
<strong>Demo</strong>:<a title="TableToChart" rel="nofollow" href="http://thinkphp.ro/apps/google/Google%20Chart%20API/mootools/MooTools%201.2.4/" target="_blank">http://thinkphp.ro/apps/google/Google%20Chart%20API/mootools/MooTools%201.2.4</a>/<br />
<strong>License</strong>: License free</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/" title="mootools charts">mootools charts</a></li>
<li><a href="http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/" title="mootools datatables">mootools datatables</a></li>
<li><a href="http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/" title="mootools datatable">mootools datatable</a></li>
<li><a href="http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/" title="datatables mootools">datatables mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/" title="datatable mootools">datatable mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/" title="datatables de mootools">datatables de mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/" title="mootools write data table">mootools write data table</a></li>
<li><a href="http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/" title="simple tables to create charts">simple tables to create charts</a></li>
<li><a href="http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/" title="mootools data table">mootools data table</a></li>
<li><a href="http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/" title="table2chart jquery">table2chart jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/mootools/table2chart-generates-charts-from-data-tables-mootools-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TableGear &#8211; Mootools Plugin for Working With Data</title>
		<link>http://blogfreakz.com/mootools/mootools-data-table/</link>
		<comments>http://blogfreakz.com/mootools/mootools-data-table/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 02:24:54 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Mootools]]></category>
		<category><![CDATA[Table]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=7143</guid>
		<description><![CDATA[TableGear is a Mootools plugin for working with data on the web. It is designed get your data into a web page, and let you work with it quickly and easily, the way you would in powerful desktop applications like Excel. The TableGear package has two parts. TableGear.php is concerned with fetching data, formatting it, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>TableGear</strong> is a Mootools plugin for working with data on the web. It is designed get your data into a web page, and let you work with it quickly and easily, the way you would in powerful desktop applications like Excel.</p>
<p><span id="more-7143"></span></p>
<p><a rel="attachment wp-att-7144" href="http://blogfreakz.com/mootools/mootools-data-table/attachment/tablegear/"><img class="aligncenter size-large wp-image-7144" title="tablegear" src="http://blogfreakz.com/wp-content/uploads/2010/07/tablegear-600x237.jpg" alt="tablegear 600x237 TableGear   Mootools Plugin for Working With Data" width="600" height="237" /></a></p>
<p>The TableGear package has two parts. TableGear.php is concerned with  fetching data, formatting it, and getting it into an XHTML table. It  also handles submitted data, both from AJAX calls and a standard POST,  and returns data to the application. TableGear.js handles the  client-side functions that make the tables dynamic including sorting,  editing and keyboard shortcuts. These scripts can be used independently,  but are designed to be used together.</p>
<p class="download"><strong>Requirements</strong>: Mootools framework<br />
<strong>Demo</strong>: <a rel="nofollow" href="http://andrewplummer.com/demos/tablegear/" target="_blank">http://andrewplummer.com/demos/tablegear/</a><br />
<strong>License</strong>: License free</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/mootools/mootools-data-table/" title="mootools datatable">mootools datatable</a></li>
<li><a href="http://blogfreakz.com/mootools/mootools-data-table/" title="TableGear">TableGear</a></li>
<li><a href="http://blogfreakz.com/mootools/mootools-data-table/" title="tablegear wordpress">tablegear wordpress</a></li>
<li><a href="http://blogfreakz.com/mootools/mootools-data-table/" title="get data from excel ajax html">get data from excel ajax html</a></li>
<li><a href="http://blogfreakz.com/mootools/mootools-data-table/" title="tablegear mootools">tablegear mootools</a></li>
<li><a href="http://blogfreakz.com/mootools/mootools-data-table/" title="tablegear mootools demo">tablegear mootools demo</a></li>
<li><a href="http://blogfreakz.com/mootools/mootools-data-table/" title="tablegear php">tablegear php</a></li>
<li><a href="http://blogfreakz.com/mootools/mootools-data-table/" title="tablegear problems">tablegear problems</a></li>
<li><a href="http://blogfreakz.com/mootools/mootools-data-table/" title="tablegear tutorials">tablegear tutorials</a></li>
<li><a href="http://blogfreakz.com/mootools/mootools-data-table/" title="tablegear using htm 5">tablegear using htm 5</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/mootools/mootools-data-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animated Table Sort jQuery Plugin</title>
		<link>http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/</link>
		<comments>http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 18:10:32 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Table]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=6862</guid>
		<description><![CDATA[Animated Table Sort is jQuery plugin  that allows us to animatedly sort a table based on a particular column. The various &#60;td&#62;s fly to their new homes, giving a nice effect. It also supports sorting on REGEXP matches. We can also control whether row relationships are maintained, whether it sorts on ascii or numeric and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Animated Table Sort</strong> is jQuery plugin  that allows us to animatedly sort a table based on a particular  column. The various &lt;td&gt;s fly to their  new homes, giving a nice effect. It also supports sorting on REGEXP  matches. We can also control whether row relationships are maintained,  whether it sorts on ascii or numeric and ascending or descending.</p>
<p><span id="more-6862"></span></p>
<p><a rel="attachment wp-att-6864" href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/attachment/short-table/"><img class="aligncenter size-full wp-image-6864" title="short-table" src="http://blogfreakz.com/wp-content/uploads/2010/07/short-table.jpg" alt="short table Animated Table Sort jQuery Plugin" width="600" height="281" /></a></p>
<p>Since &lt;td&gt;s are very fixed elements and  aren&#8217;t animatable, the animation is done by some DOM-scripted &lt;div&gt;s, which animate to their new homes then  repopulate their new &lt;td&gt; homes.</p>
<p class="download"><strong>Requirements</strong>: jQuery framework<br />
<strong>Demo</strong>: <a title="Animated Table Sort" rel="nofollow" href="http://mitya.co.uk/scripts/Table-sort---now-REGEXP-friendly-111#part3" target="_blank">http://mitya.co.uk/scripts/Table-sort&#8230;</a><br />
<strong>License</strong>: License free</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/" title="jquery table sort">jquery table sort</a></li>
<li><a href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/" title="jquery tablesort">jquery tablesort</a></li>
<li><a href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/" title="jquery animated sort">jquery animated sort</a></li>
<li><a href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/" title="animated table sort">animated table sort</a></li>
<li><a href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/" title="jquery sort animation">jquery sort animation</a></li>
<li><a href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/" title="table sort jquery">table sort jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/" title="jquery animated table sort">jquery animated table sort</a></li>
<li><a href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/" title="tablesort jquery">tablesort jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/" title="jquery table animation">jquery table animation</a></li>
<li><a href="http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/" title="jquery sort">jquery sort</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/animated-table-sort-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flexigrid &#8211; Feature-Rich Data Grid For jQuery</title>
		<link>http://blogfreakz.com/jquery/data-grid-for-jquery/</link>
		<comments>http://blogfreakz.com/jquery/data-grid-for-jquery/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 03:43:31 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[data grid]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=6451</guid>
		<description><![CDATA[Flexigrid is Lightweight but rich data grid with resizable columns and a scrolling data to match the headers, plus an ability to connect to an xml based data source using Ajax to load the content. Similar in concept with the Ext Grid only its pure jQuery love, which makes it light weight and follows the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Flexigrid</strong> is Lightweight but rich<strong> data grid</strong> with resizable columns and a scrolling  data to match the headers, plus an ability to connect to an xml based  data source using Ajax to load the content. Similar in concept with the Ext Grid only its pure jQuery love, which  makes it light weight and follows the jQuery mantra of running with the  least amount of configuration.</p>
<p><span id="more-6451"></span></p>
<p><a rel="attachment wp-att-6452" href="http://blogfreakz.com/jquery/data-grid-for-jquery/attachment/flexigrid/"><img class="aligncenter size-full wp-image-6452" title="flexigrid" src="http://blogfreakz.com/wp-content/uploads/2010/06/flexigrid.jpg" alt="flexigrid  Flexigrid   Feature Rich Data Grid For jQuery" width="600" height="268" /></a></p>
<p><strong>Features</strong></p>
<ul>
<li>Resizable columns</li>
<li>Resizable height and width</li>
<li>Sortable column headers</li>
<li>Cool theme</li>
<li>Can convert an ordinary table</li>
<li>Ability to connect to an ajax data source (XML and JSON[new])</li>
<li>Paging</li>
<li>Show/hide columns</li>
<li>Toolbar (new)</li>
<li>Search (new)</li>
<li>Accessible API</li>
<li>Many more</li>
</ul>
<p class="download"><strong>Requirements</strong>: jQuery framework<br />
<strong>Demo</strong>: <a title="Flexi grid" rel="nofollow" href="http://www.flexigrid.info/" target="_blank">http://www.flexigrid.info/</a><br />
<strong>License</strong>: Other license</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/data-grid-for-jquery/" title="jquery datagrid">jquery datagrid</a></li>
<li><a href="http://blogfreakz.com/jquery/data-grid-for-jquery/" title="cakephp datagrid">cakephp datagrid</a></li>
<li><a href="http://blogfreakz.com/jquery/data-grid-for-jquery/" title="Flexigrid cakephp">Flexigrid cakephp</a></li>
<li><a href="http://blogfreakz.com/jquery/data-grid-for-jquery/" title="jquery data grid">jquery data grid</a></li>
<li><a href="http://blogfreakz.com/jquery/data-grid-for-jquery/" title="flexigrid themes">flexigrid themes</a></li>
<li><a href="http://blogfreakz.com/jquery/data-grid-for-jquery/" title="cakephp jquery grid">cakephp jquery grid</a></li>
<li><a href="http://blogfreakz.com/jquery/data-grid-for-jquery/" title="cakephp flexigrid">cakephp flexigrid</a></li>
<li><a href="http://blogfreakz.com/jquery/data-grid-for-jquery/" title="jquery flexigrid">jquery flexigrid</a></li>
<li><a href="http://blogfreakz.com/jquery/data-grid-for-jquery/" title="datagrid jquery">datagrid jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/data-grid-for-jquery/" title="flexigrid">flexigrid</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/data-grid-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DataTables &#8211; Advanced Data Table jQuery plugin</title>
		<link>http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/</link>
		<comments>http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 21:15:41 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Table]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=3367</guid>
		<description><![CDATA[DataTables is  Data Table jQuery plugin that offfer us to create advanced and flexible data table with slick user interface. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table. Features Variable length pagination On-the-fly filtering Multi-column sorting with data type detection [...]]]></description>
			<content:encoded><![CDATA[<p><strong>DataTables</strong> is  <strong>Data Table jQuery plugin</strong> that offfer us to create advanced and flexible data table with slick user interface. It is a highly flexible tool, based upon the  foundations of progressive enhancement, which will add advanced  interaction controls to any HTML table.</p>
<p><span id="more-3367"></span><img class="alignnone size-large wp-image-3368" title="data-table" src="http://blogfreakz.com/wp-content/uploads/2010/02/data-table-600x325.png" alt="data table 600x325 DataTables   Advanced Data Table jQuery plugin" width="600" height="325" /></p>
<p><strong>Features</strong></p>
<ul>
<li>Variable length pagination</li>
<li>On-the-fly filtering</li>
<li>Multi-column sorting with data type detection</li>
<li>Smart handling of column widths</li>
<li> Display data from almost any data source
<ul>
<li> <a rel="nofollow" href="http://www.datatables.net/examples/data_sources/dom.html">DOM</a>,   									<a rel="nofollow" href="http://www.datatables.net/examples/data_sources/js_array.html">Javascript  array</a>,  									<a rel="nofollow" href="http://www.datatables.net/examples/data_sources/ajax.html">Ajax  file</a> and  									<a href="http://www.datatables.net/examples/data_sources/server_side.html">server-side  processing</a> (PHP, C#, Perl, Ruby, AIR, Gears etc)</li>
</ul>
</li>
<li style="display: list-item;">Fully <a rel="nofollow" href="http://www.datatables.net/plug-ins/i18n">internationalisable</a></li>
<li style="display: list-item;">jQuery UI <a rel="nofollow" href="http://www.datatables.net/styling/themes">ThemeRoller support</a></li>
<li style="display: list-item;">Rock solid &#8211; backed by a suite of  1300+ <a rel="nofollow" href="http://www.datatables.net/testing/">unit tests</a></li>
<li style="display: list-item;"> Wide variety of  							<a rel="nofollow" href="http://www.datatables.net/plug-ins/">plug-ins</a> inc.  							<a rel="nofollow" href="http://www.datatables.net/release-datatables/extras/TableTools/">TableTools</a>,   							<a rel="nofollow" href="http://www.datatables.net/release-datatables/extras/FixedHeader/">FixedHeader</a> and 							<a href="http://www.datatables.net/release-datatables/extras/KeyTable/">KeyTable</a></li>
<li style="display: list-item;">And more..</li>
</ul>
<p class="download"><strong>Demo</strong>: <a rel="nofollow" href="http://www.datatables.net/" target="_blank">http://www.datatables.net/</a><br />
<strong>License</strong>:<a rel="nofollow" href="http://www.datatables.net/license_gpl2"> GPL v2 license</a> or a  <a rel="nofollow" href="http://www.datatables.net/license_bsd">BSD (3-point) license</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/" title="jquery datatable">jquery datatable</a></li>
<li><a href="http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/" title="datatable jquery">datatable jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/" title="jquery advanced table">jquery advanced table</a></li>
<li><a href="http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/" title="data table">data table</a></li>
<li><a href="http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/" title="jquery datatables">jquery datatables</a></li>
<li><a href="http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/" title="data table jquery">data table jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/" title="advanced table jquery">advanced table jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/" title="jquery datatable pdf">jquery datatable pdf</a></li>
<li><a href="http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/" title="jquery datatables review">jquery datatables review</a></li>
<li><a href="http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/" title="advanced tables jquery">advanced tables jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/datatables-advanced-data-table-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SlickGrid &#8211; fast rendering JavaScript grid/spreadsheet component</title>
		<link>http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/</link>
		<comments>http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 13:41:04 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[spreadsheet]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=2326</guid>
		<description><![CDATA[SlickGrid is a JavaScript grid/spreadsheet component. SlickGrid utilizes virtual rendering to enable you to easily work with hundreds of thousands of items without any drop in performance. Features Virtual scrolling/rendering (hundreds of thousands of rows) Extremely fast rendering speed Background post-rendering for richer cells. Configurable &#38; customizable Full keyboard navigation Column resize/reorder/show/hide Column autosizing &#38; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>SlickGrid</strong> is a<strong> JavaScript grid/spreadsheet component</strong>. SlickGrid utilizes virtual rendering to enable you to easily work with hundreds of thousands of items without any drop in performance.<br />
<span id="more-2326"></span></p>
<h5><img class="alignnone size-full wp-image-2330" title="slickgrid" src="http://blogfreakz.com/wp-content/uploads/2009/12/slickgrid.jpg" alt="slickgrid SlickGrid   fast rendering JavaScript grid/spreadsheet component" width="600" height="502" /></h5>
<h5>Features</h5>
<ul>
<li>Virtual scrolling/rendering (hundreds of thousands of rows)</li>
<li>Extremely fast rendering speed</li>
<li>Background post-rendering for richer cells.</li>
<li>Configurable &amp; customizable</li>
<li>Full keyboard navigation</li>
<li>Column resize/reorder/show/hide</li>
<li>Column autosizing &amp; force-fit</li>
<li>Custom cell formatters &amp; editors</li>
<li>Support for editing and creating new rows.</li>
<li>&#8220;GlobalEditorLock&#8221; to manage concurrent edits in cases where multiple Views on a page can  edit the same data.</li>
</ul>
<p>In fact, there is no difference in performance between working with a grid with 10 rows versus a 100&#8217;000 rows. This is achieved through virtual rendering where only what&#8217;s visible on the screen plus a small buffer is rendered.</p>
<p class="download"><strong>Demo</strong>:</p>
<ul>
<li>Basic use: <a rel="nofollow" href="http://slickgrid.googlecode.com/svn/trunk/examples/example1-simple.html">http://slickgrid.googlecode.com/svn/trunk/examples/example1-simple.html</a></li>
<li>Adding some formatting: <a rel="nofollow" href="http://slickgrid.googlecode.com/svn/trunk/examples/example2-formatters.html">http://slickgrid.googlecode.com/svn/trunk/examples/example2-formatters.html</a></li>
<li>Turning it into a spreadsheet: <a rel="nofollow" href="http://slickgrid.googlecode.com/svn/trunk/examples/example3-editing.html">http://slickgrid.googlecode.com/svn/trunk/examples/example3-editing.html</a></li>
<li>Using a simple Model (filtered data view) to drive the grid: <a rel="nofollow" href="http://slickgrid.googlecode.com/svn/trunk/examples/example4-model.html">http://slickgrid.googlecode.com/svn/trunk/examples/example4-model.html</a></li>
<li>Adding tree functionality (expand/collapse) to the grid: <a rel="nofollow" href="http://slickgrid.googlecode.com/svn/trunk/examples/example5-collapsing.html">http://slickgrid.googlecode.com/svn/trunk/examples/example5-collapsing.html</a></li>
<li>AJAX-loading data (shows all Apple-related Digg stories): <a rel="nofollow" href="http://slickgrid.googlecode.com/svn/trunk/examples/example6-ajax-loading.html">http://slickgrid.googlecode.com/svn/trunk/examples/example6-ajax-loading.html</a></li>
<li>Using pre-compiled micro-templates to render cells: <a rel="nofollow" href="http://slickgrid.googlecode.com/svn/trunk/examples/example8-alternative-display.html">http://slickgrid.googlecode.com/svn/trunk/examples/example8-alternative-display.html</a></li>
<li>Using background post-rendering to add graphs: <a rel="nofollow" href="http://slickgrid.googlecode.com/svn/trunk/examples/example10-async-post-render.html">http://slickgrid.googlecode.com/svn/trunk/examples/example10-async-post-render.html</a></li>
</ul>
<p><strong>License</strong>:<a rel="nofollow" href="http://www.opensource.org/licenses/mit-license.php">MIT License</a><br />
Project Home: <a rel="nofollow" href="http://code.google.com/p/slickgrid/" target="_blank">http://code.google.com/p/slickgrid/</a>
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/" title="slickgrid">slickgrid</a></li>
<li><a href="http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/" title="slickgrid demo">slickgrid demo</a></li>
<li><a href="http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/" title="javascript spreadsheet">javascript spreadsheet</a></li>
<li><a href="http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/" title="spreadsheet javascript">spreadsheet javascript</a></li>
<li><a href="http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/" title="jquery slickgrid demo">jquery slickgrid demo</a></li>
<li><a href="http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/" title="slick grid">slick grid</a></li>
<li><a href="http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/" title="javascript grid">javascript grid</a></li>
<li><a href="http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/" title="SlickGrid ajax">SlickGrid ajax</a></li>
<li><a href="http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/" title="SlickGrid demos">SlickGrid demos</a></li>
<li><a href="http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/" title="slick grid demo">slick grid demo</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/javascript/slickgrid-fast-rendering-javascript-gridspreadsheet-component/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

