<?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 define a new grid without a column?</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column</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-define-a-new-grid-without-a-column/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>ivanchain on How to define a new grid without a column?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column#p15603</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column#p15603</guid>
        	        	<description><![CDATA[<p>Thank you so much. In fact.... my problem is /blog/?page_id=393/help/jgrid-confict-with-dnn/#p15600, I start a new topic.</p>
<p>sorry....</p>
</p>
<p>yours,</p>
<p>ivan</p>
]]></description>
        	        	<pubDate>Thu, 11 Mar 2010 12:17:14 +0200</pubDate>
        </item>
        <item>
        	<title>lupin on How to define a new grid without a column?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column#p15599</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column#p15599</guid>
        	        	<description><![CDATA[<p>Ok thats good, now what you want to achieve or the problem you&#39;re having? Loading data to grid using ArrayData?</p>
<p>This word "#list" on&#160; jQuery("#list") is the id table tag where you grid will be define.</p>
</p>
<p>hth,</p>
<p>lupin</p>
]]></description>
        	        	<pubDate>Thu, 11 Mar 2010 11:29:26 +0200</pubDate>
        </item>
        <item>
        	<title>ivanchain on How to define a new grid without a column?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column#p15596</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column#p15596</guid>
        	        	<description><![CDATA[<p>Yes, of cause, I have make the basic example to work.</p>
</p>
<p>yours,</p>
<p>Ivan</p>
]]></description>
        	        	<pubDate>Thu, 11 Mar 2010 11:15:58 +0200</pubDate>
        </item>
        <item>
        	<title>lupin on How to define a new grid without a column?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column#p15595</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column#p15595</guid>
        	        	<description><![CDATA[<p>What exactly is the problem you have? Perhaps you start here <a href="http://www.trirand.com/jqgridwiki/doku.php?id=wiki:first_grid" rel="nofollow" target="_blank"><a href="http://www.trirand.com/jqgridw" rel="nofollow">http://www.trirand.com/jqgridw</a>.....first_grid</a> and work make it work first then customise it later once you had it working.</p>
</p>
<p>hth,</p>
<p>lupin</p>
]]></description>
        	        	<pubDate>Thu, 11 Mar 2010 10:54:34 +0200</pubDate>
        </item>
        <item>
        	<title>ivanchain on How to define a new grid without a column?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column#p15591</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-define-a-new-grid-without-a-column#p15591</guid>
        	        	<description><![CDATA[<p>hello,</p>
<p>I see the&#160;/jqgridwiki/doku.php?id=wiki:retrieving_data.&#160; It show how to use a local array data, and it said:</p>
<p>-----------------------------</p>
<p>&#60;script&#62; jQuery(document).ready(function(){ <br />&#160;&#160;&#160; jQuery("#list").jqGrid({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; datatype: &#39;clientSide&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; colNames:[&#39;Inv No&#39;,&#39;Date&#39;, &#39;Amount&#39;,&#39;Tax&#39;,&#39;Total&#39;,&#39;Notes&#39;], colModel :[ <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;invid&#39;,index:&#39;invid&#39;, width:55, sorttype:&#39;int&#39;}, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;invdate&#39;,index:&#39;invdate&#39;, width:90, sorttype:&#39;date&#39;, datefmt:&#39;Y-m-d&#39;}, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;amount&#39;,index:&#39;amount&#39;, width:80, align:&#39;right&#39;,sorttype:&#39;float&#39;}, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;tax&#39;,index:&#39;tax&#39;, width:80, align:&#39;right&#39;,sorttype:&#39;float&#39;}, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;total&#39;,index:&#39;total&#39;, width:80,align:&#39;right&#39;,sorttype:&#39;float&#39;}, <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {name:&#39;note&#39;,index:&#39;note&#39;, width:150, sortable:false} ],<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#pager&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum:10,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; caption: &#39;My first grid&#39;<br />&#160;&#160; }); <br />...<br />}); <br />&#60;/script&#62;</p>
<p>-----------------------------</p>
</p>
<p>But, I think I need to have a grid on the page, then I could use&#160;&#160;jQuery("#list") to find it.</p>
<p>So I define a grid like this:</p>
<p>--------------------------</p>
<p>&#160;&#60;trirand:JQGrid ID="jqGrid3" runat="server"&#62;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#60;/trirand:JQGrid&#62;</p>
<p>--------------------------</p>
</p>
<p>But at running time, it always report an error that there is needed a column at least. But I am adding the column use array in the&#160;&#160;jQuery("#list") code above? What&#39;s it mean?</p>
</p>
<p>yours,</p>
<p>Ivan</p>
]]></description>
        	        	<pubDate>Thu, 11 Mar 2010 09:57:05 +0200</pubDate>
        </item>
</channel>
</rss>