<?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: Warning! Please Selet Row  -- jqGrid 3.2</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/warning-please-selet-row-jqgrid-32</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/warning-please-selet-row-jqgrid-32/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>canvas.wang on Warning! Please Selet Row  -- jqGrid 3.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/warning-please-selet-row-jqgrid-32#p1189</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/warning-please-selet-row-jqgrid-32#p1189</guid>
        	        	<description><![CDATA[<p>Hi Tony, thank you very much for your help. It works fine now.&#160; jqGrid is really good. Thank you for the wonderful job you have done.</p>
</p>
<p>Best wishes,</p>
<p>Canvas</p>
]]></description>
        	        	<pubDate>Tue, 22 Jul 2008 12:17:02 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Warning! Please Selet Row  -- jqGrid 3.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/warning-please-selet-row-jqgrid-32#p1186</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/warning-please-selet-row-jqgrid-32#p1186</guid>
        	        	<description><![CDATA[<p>You forgot to include the jqModal.css. Please before posting any issue</p>
<p>read the documentation.</p>
<p>Best</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Tue, 22 Jul 2008 02:01:40 +0300</pubDate>
        </item>
        <item>
        	<title>canvas.wang on Warning! Please Selet Row  -- jqGrid 3.2</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/warning-please-selet-row-jqgrid-32#p1184</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/warning-please-selet-row-jqgrid-32#p1184</guid>
        	        	<description><![CDATA[<p>I have the following two problems:</p>
<p>1). Function navGrid("#pager", {edit: false, add: false, del: false, search: true}) causes a error and displays a small modal window "Warning! Please Select Row?"&#160; error message&#160; when the page is loaded.</p>
<p>2). When the search button at the left bottom corner is clicked, the search panel shows up. But it dose not show up inside the grid, but above the grid instead.</p>
<p>&#160;&#160;&#160; i). In Firefox, it pushes the grid down a little bit.&#160; Any click on the page closes the searching panel.</p>
<p>&#160;&#160; ii). In IE7, it pushes the grid down all the way to the bottom.</p>
</p>
<p>I am currently using jqGrid 3.2. Please help. Thank you in advance.</p>
</p>
<p>My code is as following:</p>
<p>html:</p>
<p>&#60;table id="gridTest" class="scroll"&#62;&#60;/table&#62;<br />&#60;div id="pager" class="scroll" style="text-align:center;"&#62;&#60;/div&#62;</p>
</p>
<p>Javascript:</p>
<p>$("#gridTest")<br />&#160;&#160;&#160; &#160;&#160;&#160; .jqGrid({<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; url: &#39;/lawyer_file/get_file_list/1&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; datatype: &#39;json&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; mtype: &#39;GET&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; multiselect: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; toolbar :[true,"bottom"],&#160;&#160; //?? how to use this toolbar ??<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colNames: [&#39;Open File Number&#39;, &#39;Buyer&#39;, &#39;Seller&#39;],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; colModel: [<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name: &#39;fileNumber&#39;, index: &#39;id&#39;, width: 150, sortable: false },<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name: &#39;buyer&#39;, index: &#39;buyer&#39;, width: 200, sortable: true },<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name: &#39;seller&#39;, index: &#39;seller&#39;, width: 200, sortable: true }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; ],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; pager: jQuery(&#39;#pager&#39;),<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowNum: 10,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; rowList: [10, 20, 30],<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortname: &#39;id&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; sortorder: &#39;desc&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; imgpath: &#39;/themes/blue/stylesheets/i/jqGrid&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; caption: &#39;BUY/SELL Files&#39;,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; // Add hyperlink to each row.<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; loadComplete: function(){<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; var ids = $("#gridTest").getDataIDs();<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; for (var i=0; i&#60;ids.length; i++) {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; var rowId = ids[i];<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; var rowData = $("#gridTest").getRowData(rowId);<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; fileLink = "&#60;a href=&#39;/lawyer_file/" + ids[i] + "&#39;&#62;" + rowData["fileNumber"] +&#160; "&#60;/a&#62;";<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; $("#gridTest").setRowData(rowId, {fileNumber: fileLink})<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; })<br />&#160;&#160;&#160; &#160;&#160;&#160; .navGrid("#pager", {edit: false, add: false, del: false, search: true})<br />&#160;&#160;&#160; &#160;&#160;&#160; .navButtonAdd( <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; "#pager", <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; { caption: "Close Files",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; onClickButton: function(){ <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; alert("closing selected files..."); <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; }<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;);</p>
]]></description>
        	        	<pubDate>Mon, 21 Jul 2008 18:42:16 +0300</pubDate>
        </item>
</channel>
</rss>