<?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: How to use the tableToGrid?</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-use-the-tabletogrid</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/how-to-use-the-tabletogrid/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>mrh on How to use the tableToGrid?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-use-the-tabletogrid#p21374</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-use-the-tabletogrid#p21374</guid>
        	        	<description><![CDATA[<p>You did not post the rest of your code but your table and JS code work fine.&#160; You didn&#39;t show how you are linking to the jqgrid code or CSS.&#160; Also you have errors in your HTML like &#60;table&#62; instead of &#60;/table&#62; and having a &#60;tbody&#62; without a &#60;thead&#62; etc...</p>
<p>Here is my full code.</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit4917' value='Select Code' data-codeid='sfcode4917' /></p>
<div class='sfcode' id='sfcode4917'>&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#038;gt" rel="nofollow" target="_blank"><a href="http://www.w3.org/TR/xhtml1/DT" rel="nofollow">http://www.w3.org/TR/xhtml1/DT</a>.....t;&#038;gt</a>;<br />&#60;html xmlns=&#34;<a href="http://www.w3.org/1999/xhtml&#34;&#038;gt" rel="nofollow" target="_blank"><a href="http://www.w3.org/1999/xhtml&#038;q" rel="nofollow">http://www.w3.org/1999/xhtml&#038;q</a>.....t;&#038;gt</a>;<br />&#60;head&#62;<br />&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&#62;<br />&#60;title&#62;Table To Grid Test&#60;/title&#62;<br />&#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; media=&#34;screen&#34; href=&#34;js/grid/css/ui-lightness/jquery-ui-1.8.7.custom.css&#34; /&#62;<br />&#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; media=&#34;screen&#34; href=&#34;js/grid/css/ui.jqgrid.css&#34; /&#62;<br />&#60;script type=&#34;text/javascript&#34; src=&#34;jquery/jquery.js&#34;&#62;&#60;/script&#62;<br />&#60;script type=&#34;text/javascript&#34; src=&#34;jqgrid/js/i18n/grid.locale-en.js&#34;&#62;&#60;/script&#62;<br />&#60;script type=&#34;text/javascript&#34; src=&#34;jqgrid/js/jquery.jqGrid.min.js&#34;&#62;&#60;/script&#62;<br />&#60;script type=&#34;text/javascript&#34; src=&#34;jqgrid/js/jquery-ui-1.8.7.custom.min.js&#34;&#62;&#60;/script&#62;<br />&#60;script type=&#34;text/javascript&#34;&#62;<br />$(function () {<br />&#160;&#160; &#160;tableToGrid(&#34;#mytable&#34;, {<br />&#160;&#160; &#160;&#160;&#160; &#160;autowidth:true,<br />&#160;&#160; &#160;&#160;&#160; &#160;pager: &#39;#pager&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;rowNum: 20,<br />&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;loadui: true,<br />&#160;&#160; &#160;&#160;&#160; &#160;rowList: [10,20,50]<br />&#160;&#160; &#160;});<br />});<br />&#60;/script&#62;<br />&#60;/head&#62;<br />&#60;body&#62;<br />&#60;table id=&#34;mytable&#34;&#62;<br />&#160; &#60;thead&#62;<br />&#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;Name&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;th&#62;Age&#60;/th&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;th&#62;Reamrk&#60;/th&#62;<br />&#160;&#160;&#160; &#60;/tr&#62;<br />&#160; &#60;/thead&#62;<br />&#160; &#60;tbody&#62;<br />&#160;&#160;&#160; &#60;tr&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;1&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;name1&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;1&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;Remark1&#60;/td&#62;<br />&#160;&#160;&#160; &#60;/tr&#62;<br />&#160;&#160;&#160; &#60;tr&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;2&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;name1&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;1&#60;/td&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;Remark1&#60;/td&#62;<br />&#160;&#160;&#160; &#60;/tr&#62; <br />&#160; &#60;/tbody&#62;<br />&#60;/table&#62;<br />&#60;div id=&#34;pager&#34;&#62;&#60;/div&#62;<br />&#60;/body&#62;<br />&#60;/html&#62;</div>
]]></description>
        	        	<pubDate>Tue, 21 Dec 2010 20:07:31 +0200</pubDate>
        </item>
        <item>
        	<title>nanlinfeixue on How to use the tableToGrid?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-use-the-tabletogrid#p21370</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-use-the-tabletogrid#p21370</guid>
        	        	<description><![CDATA[<p>&#60;table id="mytable"&#62;<br />&#160; &#60;tr&#62; <br />&#160;&#160;&#160;&#160; &#60;th&#62;Id&#60;/th&#62; <br />&#160;&#160;&#160;&#160; &#60;th&#62;Name&#60;/th&#62;<br />&#160;&#160;&#160;&#160; &#60;th&#62;Age&#60;/th&#62;<br />&#160;&#160;&#160;&#160; &#60;th&#62;Reamrk&#60;/th&#62;<br />&#160; &#60;/tr&#62; <br />&#160; &#60;tbody&#62; <br />&#160;&#160;&#160; &#60;tr&#62; <br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;1&#60;/td&#62; <br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;name1&#60;/td&#62; <br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;1&#60;/td&#62; <br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;Remark1&#60;/td&#62; <br />&#160;&#160;&#160; &#60;/tr&#62; <br />&#160;&#160; &#60;tr&#62; <br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;2&#60;/td&#62; <br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;name1&#60;/td&#62; <br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;1&#60;/td&#62; <br />&#160;&#160;&#160;&#160;&#160; &#60;td&#62;Remark1&#60;/td&#62; <br />&#160;&#160;&#160; &#60;/tr&#62;&#160;<br />&#160;&#160;&#160;&#160; &#60;/tbody&#62;<br />&#60;table&#62;</p>
<p>&#160;&#60;div id="pager"&#62;&#60;/div&#62;</p>
</p>
<p>&#60;script&#62;<br />&#160;$(function () {<br />&#160;&#160;tableToGrid("#mytable", {<br />&#160;&#160;&#160;autowidth:true,<br />&#160;&#160;&#160;pager: &#39;#pager&#39;,<br />&#160;&#160;&#160;rowNum: 20,<br />&#160;&#160;&#160;viewrecords: true,<br />&#160;&#160;&#160;loadui: true,<br />&#160;&#160;&#160;rowList: [10,20,50]<br />&#160;&#160;});<br />&#160;});<br />&#60;/script&#62;</p>
</p>
<p>I get the&#160;error message: &#39;b.jgrid.formatter.integer&#39; Is null or not an object</p>
</p>
<p>Is any one help me?</p>
<p>thanks<img class="spSmiley" style="margin:0" title="Laugh" src="/blog/wp-content/forum-smileys/sf-laugh.gif" alt="Laugh" /></p></p>
]]></description>
        	        	<pubDate>Tue, 21 Dec 2010 11:33:44 +0200</pubDate>
        </item>
</channel>
</rss>