<?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: Unable to make Search work</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/unable-to-make-search-work</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/unable-to-make-search-work/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>hemen on Unable to make Search work</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/unable-to-make-search-work#p2126</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/unable-to-make-search-work#p2126</guid>
        	        	<description><![CDATA[<p>Hi Tony,</p>
<p>Changes you suggested worked for me. <img class="spSmiley" style="margin:0" title="Cool" src="/blog/wp-content/plugins/simple-forum/tinymce/plugins/emotions/img/smiley-cool.gif" border="0" alt="Cool" /></p>
<p>Thanks,</p>
<p>Hemen</p>
]]></description>
        	        	<pubDate>Fri, 19 Sep 2008 02:03:21 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Unable to make Search work</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/unable-to-make-search-work#p2125</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/unable-to-make-search-work#p2125</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Sorry for this typing error in the docs. Now the right is</p>
<p>&#60;script src=&#8221;js/jqModal.js&#8221; type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62; <br />&#60;script src=&#8221;js/jqDnR.js&#8221; type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62;</p>
<p>The wrong code is:</p>
<p>&#60;script src=&#8221;js/<span style="text-decoration: underline;">jquery</span>.jqModal.js&#8221; type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62; <br />&#60;script src=&#8221;js/<span style="text-decoration: underline;">jquery</span>.jqDnR.js&#8221; type=&#8221;text/javascript&#8221;&#62;&#60;/script&#62;</p>
<p>Best Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Fri, 19 Sep 2008 01:24:37 +0300</pubDate>
        </item>
        <item>
        	<title>hemen on Unable to make Search work</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/unable-to-make-search-work#p2120</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/unable-to-make-search-work#p2120</guid>
        	        	<description><![CDATA[<p>Hi,</p>
<p>I am trying to implement the search option in the grid and I have not been able to make it work. The grid works fine and displays data but clicking on search button doesnt pop up the search box.</p>
<p>Code:</p>
<p>&#60;link rel="stylesheet" type="text/css" media="screen" href="themes/basic/grid.css" /&#62; <br />&#60;link rel="stylesheet" type="text/css" media="screen" href="themes/jqModal.css" /&#62; <br />&#60;script src="jquery.js" type="text/javascript"&#62;&#60;/script&#62; <br />&#60;script src="jquery.jqGrid.js" type="text/javascript"&#62;&#60;/script&#62; <br />&#60;script src="js/jquery.jqModal.js" type="text/javascript"&#62;&#60;/script&#62; <br />&#60;script src="js/jquery.jqDnR.js" type="text/javascript"&#62;&#60;/script&#62; <br />&#60;script type="text/javascript"&#62; <br />jQuery(document).ready(function()<br />{ jQuery("#list").jqGrid({ <br />&#160;&#160;&#160; url:&#39;dbtest.aspx&#39;, <br />&#160;&#160;&#160; datatype: &#39;xml&#39;, <br />&#160;&#160;&#160; mtype: &#39;GET&#39;, <br />&#160;&#160;&#160; colNames:[&#39;Advertiser&#39;,&#39;Title&#39;, &#39;Email&#39;,&#39;Amount&#39;,&#39;Date&#39;,&#39;SiteID&#39;], <br />&#160;&#160;&#160; colModel :[ {name:&#39;ad_username&#39;,index:&#39;ad_username&#39;,&#160; width:55, xmlmap:&#39;ad_username&#39;},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;title&#39;,index:&#39;title&#39; ,&#160; width:90, xmlmap:&#39;title&#39;}, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;buy_email&#39;, index:&#39;buy_email&#39;, width:80, align:&#39;right&#39;, xmlmap:&#39;buy_email&#39;}, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;amount&#39;, index:&#39;amount&#39;, width:40, align:&#39;right&#39;, xmlmap:&#39;amount&#39;}, <br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;date&#39;, index:&#39;date&#39;, width:80, align:&#39;left&#39;, xmlmap:&#39;date&#39;},<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; {name:&#39;siteid&#39;, index:&#39;siteid&#39;, width:80, align:&#39;left&#39;, xmlmap:&#39;siteid&#39;},], <br />&#160;&#160;&#160; pager: jQuery(&#39;#pager&#39;), <br />&#160;&#160;&#160; rowNum:10, //rowList:[10,20,30],<br />&#160;&#160;&#160; //sortname: &#39;id&#39;, <br />&#160;&#160;&#160; //sortorder: "desc", <br />&#160;&#160;&#160; viewrecords: true, <br />&#160;&#160;&#160; imgpath: &#39;themes/basic/images&#39;, <br />&#160;&#160;&#160; &#160;&#160;&#160; xmlReader: {<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; root: "sales",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; row: "sale",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; page: "sales&#62;currentpage",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; total: "sales&#62;totalpages",<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; records : "sales&#62;totalrecords",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; repeatitems: false,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //cell: "cell",<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; id: "id" //,<br />&#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; //&#160;&#160;&#160; subgrid: {root:"sales", row: "sale", repeatitems: true, cell:"cell"}<br />&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; },<br />&#160;&#160;&#160; caption: &#39;Sales-Info&#39;,<br />&#160;&#160;&#160; //hiddengrid: true,<br />&#160;&#160;&#160; height: 509,<br />&#160;&#160;&#160; width: 800<br />&#160;&#160;&#160; }); <br />&#160;&#160;&#160; $("#bsdata").click(function(){<br />&#160;&#160;&#160; jQuery("#list").searchGrid(<br />&#160;&#160;&#160; &#160;&#160;&#160; {sopt:[&#39;cn&#39;,&#39;bw&#39;,&#39;eq&#39;,&#39;ne&#39;,&#39;lt&#39;,&#39;gt&#39;,&#39;ew&#39;]}<br />&#160;&#160;&#160; );<br />});<br />&#160;&#160;&#160; &#160;&#160;&#160; //alert (&#39;hemen&#39;) &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; &#160;&#160;&#160; <br />&#160;&#160;&#160; }); <br />&#160;&#160;&#160; &#60;/script&#62; <br />&#160;&#160;&#160; &#60;/head&#62;<br />&#160;&#160;&#160; &#60;body&#62; <br />&#160;&#160;&#160; <br />&#160;&#160;&#160; &#60;table id="list" class="scroll"&#62;<br />&#160;&#160;&#160; &#160;&#60;div id="pager" class="scroll" style="text-align:center;"&#62;&#60;/div&#62;<br />&#160;&#160;&#160; &#60;input type="BUTTON" id="bsdata" value="Search" /&#62;<br />&#160;&#160;&#160; &#60;/body&#62; &#60;/html&#62;</p>
]]></description>
        	        	<pubDate>Thu, 18 Sep 2008 23:31:52 +0300</pubDate>
        </item>
</channel>
</rss>