<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: Grouping in tabletogrid options</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/grouping-in-tabletogrid-options</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/help/grouping-in-tabletogrid-options/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>gijs_wil on Grouping in tabletogrid options</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grouping-in-tabletogrid-options#p21079</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grouping-in-tabletogrid-options#p21079</guid>
        	        	<description><![CDATA[<p>Hi there,</p>
</p>
<p>Found the error. It is working now.</p>
<p>I rewrote the existing Grouping row(s) collapsed example to use an existing table instead of the myData variable. This way I could keep the grid options almost identical (only item removed is the data:myData option).</p>
</p>
<p>When the page loads the grouping is not working (other options are, the grouping column is removed, pager is added). There&#160;are no group headers and all rows are shown in their original order. When clicking one of the sortable column headers the table is reloaded and the grouping is working.</p>
</p>
<p>Because the original table is already loaded the grid needed to be reloaded to group the data. So&#160;I needed to add a trigger&#160;to reload the grid.</p>
<p>This the rewritten example:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit493' value='Select Code' data-codeid='sfcode493' /></p>
<div class='sfcode' id='sfcode493'>
<p>&#60;html&#62;<br />&#160;&#60;head&#62;<br />&#160;&#160;&#60;title&#62;Test page&#60;/title&#62;</p>
<p>&#160;&#160;&#60;meta http-equiv=&#34;Content-Script-Type&#34; content=&#34;text/javascript&#34;/&#62;<br />&#160;&#160;&#60;meta http-equiv=&#34;Content-Style-Type&#34; content=&#34;text/css&#34;/&#62;</p>
<p>&#160;&#160;&#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;cs/ui/jquery-ui-1.7.2.custom.css&#34; /&#62;<br />&#160;&#160;&#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/ui.jqgrid.css&#34; /&#62;<br />&#160;<br />&#160;&#160;&#60;script type=&#34;text/javascript&#34; src=&#34;js/jquery-1.4.1.min.js&#34;&#62;&#60;/script&#62;<br />&#160;&#160;&#60;script type=&#34;text/javascript&#34; src=&#34;js/jquery-ui-1.7.2.custom.min.js&#34;&#62;&#60;/script&#62;<br />&#160;&#160;&#60;script type=&#34;text/javascript&#34; src=&#34;js/grid.locale-nl.js&#34;&#62;&#60;/script&#62;<br />&#160;&#160;&#60;script type=&#34;text/javascript&#34; src=&#34;js/jquery.jqGrid.min.js&#34;&#62;&#60;/script&#62;<br />&#160;&#160;&#60;script type=&#34;text/javascript&#34;&#62;<br />&#160;&#160;$(document).ready(function(){&#160;&#160;&#160; <br />&#160;&#160;&#160;tableToGrid(&#34;#list485&#34;, {<br />&#160;&#160;&#160;&#160;datatype: &#34;local&#34;,<br />&#160;&#160;&#160;&#160;height: &#39;auto&#39;,<br />&#160;&#160;&#160;&#160;rowNum: 30,<br />&#160;&#160;&#160;&#160;rowList: [10,20,30],<br />&#160;&#160;&#160;&#160;colNames:[&#39;Inv No&#39;,&#39;Date&#39;, &#39;Client&#39;, &#39;Amount&#39;,&#39;Tax&#39;,&#39;Total&#39;,&#39;Notes&#39;],<br />&#160;&#160;&#160;&#160;colModel:[<br />&#160;&#160;&#160;&#160;&#160;&#160;{name:&#39;id&#39;,index:&#39;id&#39;, width:60, sorttype:&#34;int&#34;},<br />&#160;&#160;&#160;&#160;&#160;&#160;{name:&#39;invdate&#39;,index:&#39;invdate&#39;, width:90, sorttype:&#34;date&#34;, formatter:&#34;date&#34;},<br />&#160;&#160;&#160;&#160;&#160;&#160;{name:&#39;name&#39;,index:&#39;name&#39;, width:100, editable:true},<br />&#160;&#160;&#160;&#160;&#160;&#160;{name:&#39;amount&#39;,index:&#39;amount&#39;, width:80, align:&#34;right&#34;,sorttype:&#34;float&#34;, formatter:&#34;number&#34;, editable:true},<br />&#160;&#160;&#160;&#160;&#160;&#160;{name:&#39;tax&#39;,index:&#39;tax&#39;, width:80, align:&#34;right&#34;,sorttype:&#34;float&#34;, editable:true},&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;{name:&#39;total&#39;,index:&#39;total&#39;, width:80,align:&#34;right&#34;,sorttype:&#34;float&#34;},&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;{name:&#39;note&#39;,index:&#39;note&#39;, width:150, sortable:false}&#160;&#160;<br />&#160;&#160;&#160;&#160;],<br />&#160;&#160;&#160;&#160;pager: &#34;#plist485&#34;,<br />&#160;&#160;&#160;&#160;viewrecords: true,<br />&#160;&#160;&#160;&#160;sortname: &#39;name&#39;,<br />&#160;&#160;&#160;&#160;grouping:true,<br />&#160;&#160;&#160;&#160;groupingView : {<br />&#160;&#160;&#160;&#160;&#160;groupField : [&#39;name&#39;],<br />&#160;&#160;&#160;&#160;&#160;groupColumnShow : [false],<br />&#160;&#160;&#160;&#160;&#160;groupText : [&#39;&#60;b&#62;{0} - {1} Item(s)&#60;/b&#62;&#39;],<br />&#160;&#160;&#160;&#160;&#160;groupCollapse : true,<br />&#160;&#160;&#160;&#160;&#160;groupOrder: [&#39;desc&#39;]<br />&#160;&#160;&#160;&#160;},<br />&#160;&#160;&#160;&#160;caption: &#34;Initially hidden data&#34;<br />&#160;&#160;&#160;});<br />&#160;&#160;&#160;<br />&#160;&#160;&#160;$(&#34;#list485&#34;).trigger(&#34;reloadGrid&#34;); <br />&#160;&#160;});<br />&#160;&#160;&#60;/script&#62;<br />&#160;&#60;/head&#62;<br />&#160;&#60;body&#62;<br />&#160;&#160;&#60;table id=&#34;list485&#34;&#62;<br />&#160;&#160;&#160;&#60;thead&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;th&#62;id&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;th&#62;invdate&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;th&#62;name&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;th&#62;note&#60;/tdh&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;th&#62;amount&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;th&#62;tax&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;th&#62;total&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#60;/tr&#62;<br />&#160;&#160;&#160;&#60;/thead&#62;<br />&#160;&#160;&#160;&#60;tbody&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;1&#60;/td&#62;&#60;td&#62;2010-05-24&#60;/td&#62;&#60;td&#62;test&#60;/td&#62;&#60;td&#62;note&#60;/td&#62;&#60;td&#62;2100.00&#60;/td&#62;&#60;td&#62;10.00&#60;/td&#62;&#60;td&#62;2111.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;2&#60;/td&#62;&#60;td&#62;2010-05-25&#60;/td&#62;&#60;td&#62;test2&#60;/td&#62;&#60;td&#62;note2&#60;/td&#62;&#60;td&#62;300.00&#60;/td&#62;&#60;td&#62;20.00&#60;/td&#62;&#60;td&#62;320.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;3&#60;/td&#62;&#60;td&#62;2007-09-01&#60;/td&#62;&#60;td&#62;test3&#60;/td&#62;&#60;td&#62;note3&#60;/td&#62;&#60;td&#62;400.00&#60;/td&#62;&#60;td&#62;30.00&#60;/td&#62;&#60;td&#62;430.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;4&#60;/td&#62;&#60;td&#62;2007-10-04&#60;/td&#62;&#60;td&#62;test&#60;/td&#62;&#60;td&#62;note&#60;/td&#62;&#60;td&#62;200.00&#60;/td&#62;&#60;td&#62;10.00&#60;/td&#62;&#60;td&#62;210.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;5&#60;/td&#62;&#60;td&#62;2007-10-05&#60;/td&#62;&#60;td&#62;test2&#60;/td&#62;&#60;td&#62;note2&#60;/td&#62;&#60;td&#62;300.00&#60;/td&#62;&#60;td&#62;20.00&#60;/td&#62;&#60;td&#62;320.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;6&#60;/td&#62;&#60;td&#62;2007-09-06&#60;/td&#62;&#60;td&#62;test3&#60;/td&#62;&#60;td&#62;note3&#60;/td&#62;&#60;td&#62;400.00&#60;/td&#62;&#60;td&#62;30.00&#60;/td&#62;&#60;td&#62;430.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;7&#60;/td&#62;&#60;td&#62;2007-10-04&#60;/td&#62;&#60;td&#62;test&#60;/td&#62;&#60;td&#62;note&#60;/td&#62;&#60;td&#62;200.00&#60;/td&#62;&#60;td&#62;10.00&#60;/td&#62;&#60;td&#62;210.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;8&#60;/td&#62;&#60;td&#62;2007-10-03&#60;/td&#62;&#60;td&#62;test2&#60;/td&#62;&#60;td&#62;note2&#60;/td&#62;&#60;td&#62;300.00&#60;/td&#62;&#60;td&#62;21.00&#60;/td&#62;&#60;td&#62;320.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;9&#60;/td&#62;&#60;td&#62;2007-09-01&#60;/td&#62;&#60;td&#62;test3&#60;/td&#62;&#60;td&#62;note3&#60;/td&#62;&#60;td&#62;400.00&#60;/td&#62;&#60;td&#62;30.00&#60;/td&#62;&#60;td&#62;430.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;11&#60;/td&#62;&#60;td&#62;2007-10-01&#60;/td&#62;&#60;td&#62;test&#60;/td&#62;&#60;td&#62;note&#60;/td&#62;&#60;td&#62;200.00&#60;/td&#62;&#60;td&#62;10.00&#60;/td&#62;&#60;td&#62;210.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;12&#60;/td&#62;&#60;td&#62;2007-10-02&#60;/td&#62;&#60;td&#62;test2&#60;/td&#62;&#60;td&#62;note2&#60;/td&#62;&#60;td&#62;300.00&#60;/td&#62;&#60;td&#62;20.00&#60;/td&#62;&#60;td&#62;320.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;13&#60;/td&#62;&#60;td&#62;2007-09-01&#60;/td&#62;&#60;td&#62;test3&#60;/td&#62;&#60;td&#62;note3&#60;/td&#62;&#60;td&#62;400.00&#60;/td&#62;&#60;td&#62;30.00&#60;/td&#62;&#60;td&#62;430.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;14&#60;/td&#62;&#60;td&#62;2007-10-04&#60;/td&#62;&#60;td&#62;test&#60;/td&#62;&#60;td&#62;note&#60;/td&#62;&#60;td&#62;200.00&#60;/td&#62;&#60;td&#62;10.00&#60;/td&#62;&#60;td&#62;210.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;15&#60;/td&#62;&#60;td&#62;2007-10-05&#60;/td&#62;&#60;td&#62;test2&#60;/td&#62;&#60;td&#62;note2&#60;/td&#62;&#60;td&#62;300.00&#60;/td&#62;&#60;td&#62;20.00&#60;/td&#62;&#60;td&#62;320.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;16&#60;/td&#62;&#60;td&#62;2007-09-06&#60;/td&#62;&#60;td&#62;test3&#60;/td&#62;&#60;td&#62;note3&#60;/td&#62;&#60;td&#62;400.00&#60;/td&#62;&#60;td&#62;30.00&#60;/td&#62;&#60;td&#62;430.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;17&#60;/td&#62;&#60;td&#62;2007-10-04&#60;/td&#62;&#60;td&#62;test&#60;/td&#62;&#60;td&#62;note&#60;/td&#62;&#60;td&#62;200.00&#60;/td&#62;&#60;td&#62;10.00&#60;/td&#62;&#60;td&#62;210.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;18&#60;/td&#62;&#60;td&#62;2007-10-03&#60;/td&#62;&#60;td&#62;test2&#60;/td&#62;&#60;td&#62;note2&#60;/td&#62;&#60;td&#62;300.00&#60;/td&#62;&#60;td&#62;20.00&#60;/td&#62;&#60;td&#62;320.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;19&#60;/td&#62;&#60;td&#62;2007-09-01&#60;/td&#62;&#60;td&#62;test3&#60;/td&#62;&#60;td&#62;note3&#60;/td&#62;&#60;td&#62;400.00&#60;/td&#62;&#60;td&#62;30.00&#60;/td&#62;&#60;td&#62;430.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;21&#60;/td&#62;&#60;td&#62;2007-10-01&#60;/td&#62;&#60;td&#62;test&#60;/td&#62;&#60;td&#62;note&#60;/td&#62;&#60;td&#62;200.00&#60;/td&#62;&#60;td&#62;10.00&#60;/td&#62;&#60;td&#62;210.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;22&#60;/td&#62;&#60;td&#62;2007-10-02&#60;/td&#62;&#60;td&#62;test2&#60;/td&#62;&#60;td&#62;note2&#60;/td&#62;&#60;td&#62;300.00&#60;/td&#62;&#60;td&#62;20.00&#60;/td&#62;&#60;td&#62;320.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;23&#60;/td&#62;&#60;td&#62;2007-09-01&#60;/td&#62;&#60;td&#62;test3&#60;/td&#62;&#60;td&#62;note3&#60;/td&#62;&#60;td&#62;400.00&#60;/td&#62;&#60;td&#62;30.00&#60;/td&#62;&#60;td&#62;430.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;24&#60;/td&#62;&#60;td&#62;2007-10-04&#60;/td&#62;&#60;td&#62;test&#60;/td&#62;&#60;td&#62;note&#60;/td&#62;&#60;td&#62;200.00&#60;/td&#62;&#60;td&#62;10.00&#60;/td&#62;&#60;td&#62;210.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;25&#60;/td&#62;&#60;td&#62;2007-10-05&#60;/td&#62;&#60;td&#62;test2&#60;/td&#62;&#60;td&#62;note2&#60;/td&#62;&#60;td&#62;300.00&#60;/td&#62;&#60;td&#62;20.00&#60;/td&#62;&#60;td&#62;320.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;26&#60;/td&#62;&#60;td&#62;2007-09-06&#60;/td&#62;&#60;td&#62;test3&#60;/td&#62;&#60;td&#62;note3&#60;/td&#62;&#60;td&#62;400.00&#60;/td&#62;&#60;td&#62;30.00&#60;/td&#62;&#60;td&#62;430.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;27&#60;/td&#62;&#60;td&#62;2007-10-04&#60;/td&#62;&#60;td&#62;test&#60;/td&#62;&#60;td&#62;note&#60;/td&#62;&#60;td&#62;200.00&#60;/td&#62;&#60;td&#62;10.00&#60;/td&#62;&#60;td&#62;210.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;28&#60;/td&#62;&#60;td&#62;2007-10-03&#60;/td&#62;&#60;td&#62;test2&#60;/td&#62;&#60;td&#62;note2&#60;/td&#62;&#60;td&#62;300.00&#60;/td&#62;&#60;td&#62;20.00&#60;/td&#62;&#60;td&#62;320.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;&#60;td&#62;29&#60;/td&#62;&#60;td&#62;2007-09-01&#60;/td&#62;&#60;td&#62;test3&#60;/td&#62;&#60;td&#62;note3&#60;/td&#62;&#60;td&#62;400.00&#60;/td&#62;&#60;td&#62;30.00&#60;/td&#62;&#60;td&#62;430.00&#60;/td&#62;&#60;/tr&#62;<br />&#160;&#160;&#160;&#60;/tbody&#62;<br />&#160;&#160;&#60;/table&#62;<br />&#160;&#160;&#60;div id=&#34;plist485&#34;&#62;&#60;/div&#62;<br />&#160;&#60;/body&#62;<br />&#60;/html&#62;</p>
<p>&#160;</p>
</div>
<p>Kind regards,</p>
</p>
<p>Wilbert</p>
]]></description>
        	        	<pubDate>Thu, 02 Dec 2010 17:43:25 +0200</pubDate>
        </item>
        <item>
        	<title>gijs_wil on Grouping in tabletogrid options</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/grouping-in-tabletogrid-options#p21048</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/grouping-in-tabletogrid-options#p21048</guid>
        	        	<description><![CDATA[<p>Hello,</p>
</p>
<p>I am new to this fabulous plugin and trying to convert a existing html table (by using tabletogrid). The table is displayed fine but grouping is not working. The options are read as the grouping column is removed (as set by groupColumnShow : [false]).</p>
<p>All the grouping examples are working fine so all neccessary files are loaded. I am trying to find the minimum options needed for grouping by trial and error now.</p>
</p>
<p>here&#39;s my current code:</p>
<p><input type='button' class='sfcodeselect' name='sfselectit6036' value='Select Code' data-codeid='sfcode6036' /></p>
<div class='sfcode' id='sfcode6036'>
<p>$(document).ready(function(){&#160;&#160;&#160;&#160;&#160; <br />&#160;&#160;&#160;tableToGrid(&#34;#mytable&#34;,{<br />&#160;&#160;&#160;&#160;datatype: &#34;local&#34;,<br />&#160;&#160;&#160;&#160;sortname: &#39;Group&#39;,<br />&#160;&#160;&#160;&#160;grouping:true,<br />&#160;&#160;&#160;&#160;groupingView : {<br />&#160;&#160;&#160;&#160;&#160;groupField : [&#39;Group&#39;],<br />&#160;&#160;&#160;&#160;&#160;groupColumnShow : [false],<br />&#160;&#160;&#160;&#160;&#160;groupText : [&#39;&#60;b&#62;{0} - {1} Item(s)&#60;/b&#62;&#39;]<br />&#160;&#160;&#160;&#160;},<br />&#160;&#160;&#160;&#160;caption: &#34;Test grouping&#34;<br />&#160;&#160;&#160;});<br />&#160;&#160;});</p>
<p>.....</p>
<p>&#60;table id=&#34;mytable&#34;&#62;<br />&#160;&#160;&#160;&#60;tr&#62;<br />&#160;&#160;&#160;&#160;&#60;th&#62;Group&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#60;th&#62;Name&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#60;th&#62;Description&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#60;th&#62;Summary&#60;/th&#62;<br />&#160;&#160;&#160;&#60;/tr&#62;<br />&#160;&#160;&#160;&#60;tbody&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;First group&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;John Johnson&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Lorem ipsum dolor sit amet&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Lorem ipsum dolor sit amet, consectetur &#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;First group&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Peter Peterson&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Lorem ipsum dolor sit amet&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. &#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Second group&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Lois Lane&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Lorem ipsum dolor sit amet&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt &#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#60;/tr&#62;<br />&#160;&#160;&#160;&#160;&#60;tr&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Third group&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Nicole Nickelson&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Lorem ipsum dolor sit amet&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160;&#60;td&#62;Lorem ipsum dolor sit amet, consectetur adipisicing elit,&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#60;/tr&#62;<br />&#160;&#160;&#160;&#60;/tbody&#62;<br />&#160;&#160;&#160;&#60;/table&#62;</p>
</div>
<p>Best regards,</p>
</p>
<p>Wilbert</p>
]]></description>
        	        	<pubDate>Tue, 30 Nov 2010 22:19:29 +0200</pubDate>
        </item>
</channel>
</rss>