<?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: Nothing Displays Blank Page</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/nothing-displays-blank-page</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/nothing-displays-blank-page/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Nothing Displays Blank Page</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/nothing-displays-blank-page#p11789</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/nothing-displays-blank-page#p11789</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Welcome to jqGrid community.</p>
<p>I think if you have a working grid initiallly, you should add the functionalities to this grid rather than to copy paste the exmples, or look into the example and apply the new things to the working grid.</p>
<p>I think this is more natural way to learn jqGrid rather than to copy paste code without to understand them.</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Wed, 11 Nov 2009 04:01:28 +0200</pubDate>
        </item>
        <item>
        	<title>Dmoney on Nothing Displays Blank Page</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/nothing-displays-blank-page#p11765</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/nothing-displays-blank-page#p11765</guid>
        	        	<description><![CDATA[<p><span style="font-family: &#39;Lucida Grande&#39;; font-size: 12px; color: #333333; white-space: pre;">This is my first time using jqgrid and the "my First Grid example worked perfectly for me." </span></p>
<p><span style="font-family: &#39;Lucida Grande&#39;; font-size: 12px; color: #333333; white-space: pre;">When I try any of the examples in the wiki or specifically the editable grids I get a completely blank screen. </span></p>
<p><span style="font-family: &#39;Lucida Grande&#39;; font-size: 12px; color: #333333; white-space: pre;">Can anyone tell me what I&#39;m doing wrong?</span></p>
<p><input type='button' class='sfcodeselect' name='sfselectit8045' value='Select Code' data-codeid='sfcode8045' /></p>
<div class='sfcode' id='sfcode8045'>
<p>&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&#62;</p>
<p>&#60;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&#62;</p>
<p>&#60;head&#62;</p>
<p>&#60;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&#62;</p>
<p>&#60;title&#62;My First Grid&#60;/title&#62;</p>
</p>
<p>&#60;link rel="stylesheet" type="text/css" media="screen" href="css/redmond/jquery-ui-1.7.2.custom.css" /&#62;</p>
<p>&#60;link rel="stylesheet" type="text/css" media="screen" href="css/ui.jqgrid.css" /&#62;</p>
</p>
<p>&#60;style&#62;</p>
<p>html, body {</p>
<p>&#160;&#160; &#160;margin: 0;</p>
<p>&#160;&#160; &#160;padding: 0;</p>
<p>&#160;&#160; &#160;font-size: 75%;</p>
<p>}</p>
<p>&#60;/style&#62;</p>
</p>
<p>&#60;script src="js/jquery-1.3.2.min.js" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script src="js/i18n/grid.locale-en.js" type="text/javascript"&#62;&#60;/script&#62;</p>
<p>&#60;script src="js/jquery.jqGrid.min.js" type="text/javascript"&#62;&#60;/script&#62;</p>
</p>
<p>&#60;script type="text/javascript"&#62;</p>
<p>jQuery(document).ready(function(){&#160;</p>
<p>&#160;jQuery("#rowed1").jqGrid({</p>
<p>&#160;&#160; <span> </span>url:&#39;naftaData.php?q=2&#39;,</p>
<p><span> </span>datatype: "json",</p>
<p>&#160;&#160; <span> </span>colNames:[&#39;Inv No&#39;,&#39;Date&#39;, &#39;Client&#39;, &#39;Amount&#39;],</p>
<p>&#160;&#160; <span> </span>colModel:[</p>
<p>&#160;&#160; <span> </span>{name:&#39;id&#39;,index:&#39;id&#39;, width:55},</p>
<p>&#160;&#160; <span> </span>{name:&#39;invdate&#39;,index:&#39;invdate&#39;, width:90, editable:true},</p>
<p>&#160;&#160; <span> </span>{name:&#39;name&#39;,index:&#39;name&#39;, width:100,editable:true},</p>
<p>&#160;&#160; <span> </span>{name:&#39;amount&#39;,index:&#39;amount&#39;, width:80, align:"right",editable:true}<span> </span></p>
<p>&#160;&#160; <span> </span>],</p>
<p>&#160;&#160; <span> </span>rowNum:10,</p>
<p>&#160;&#160; <span> </span>rowList:[10,20,30],</p>
<p>&#160;&#160; <span> </span>imgpath: gridimgpath,</p>
<p>&#160;&#160; <span> </span>pager: jQuery(&#39;#prowed1&#39;),</p>
<p>&#160;&#160; <span> </span>sortname: &#39;id&#39;,</p>
<p>&#160;&#160; &#160;viewrecords: true,</p>
<p>&#160;&#160; &#160;sortorder: "desc",</p>
<p><span> </span>editurl: "server.php",</p>
<p><span> </span>caption: "Basic Example"</p>
<p>}).navGrid("#prowed1",{edit:false,add:false,del:false});</p>
</p>
<p>jQuery("#ed1").click( function() {</p>
<p><span> </span>jQuery("#rowed1").editRow("13");</p>
<p><span> </span>this.disabled = &#39;true&#39;;</p>
<p><span> </span>jQuery("#sved1,#cned1").attr("disabled",false);</p>
<p>});</p>
<p>jQuery("#sved1").click( function() {</p>
<p><span> </span>jQuery("#rowed1").saveRow("13");</p>
<p><span> </span>jQuery("#sved1,#cned1").attr("disabled",true);</p>
<p><span> </span>jQuery("#ed1").attr("disabled",false);</p>
<p>});</p>
<p>jQuery("#cned1").click( function() {</p>
<p><span> </span>jQuery("#rowed1").restoreRow("13");</p>
<p><span> </span>jQuery("#sved1,#cned1").attr("disabled",true);</p>
<p><span> </span>jQuery("#ed1").attr("disabled",false);</p>
<p>});</p>
</p>
<p>});&#160;</p>
<p>&#60;/script&#62;</p>
</p>
<p>&#60;/head&#62;</p>
<p>&#60;body&#62;</p>
</p>
<p>&#60;table id="rowed1" class="scroll" cellpadding="0" cellspacing="0"&#62;&#60;/table&#62;</p>
<p>&#60;div id="prowed1" class="scroll" style="text-align:center;"&#62;&#60;/div&#62;</p>
<p>&#60;br /&#62;</p>
<p>&#60;input type="BUTTON" id="ed1" value="Edit row 13" /&#62;</p>
<p>&#60;input type="BUTTON" id="sved1" disabled=&#39;true&#39; value="Save row 13" /&#62;</p>
<p>&#60;input type="BUTTON" id="cned1" disabled=&#39;true&#39; value="Cancel Save" /&#62;</p>
</p>
<p>&#60;/body&#62;</p>
<p>&#60;/html&#62;</p>
</div>
]]></description>
        	        	<pubDate>Tue, 10 Nov 2009 21:22:44 +0200</pubDate>
        </item>
</channel>
</rss>