<?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: Search Toolbar</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2</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/search-toolbar-2/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>cleaner on Search Toolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2#p21890</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2#p21890</guid>
        	        	<description><![CDATA[<p>thanks;) works!! <a href="http://lineguides.netsons.org/myproject3/LaStanza.html" rel="nofollow" target="_blank"><a href="http://lineguides.netsons.org/" rel="nofollow">http://lineguides.netsons.org/</a>.....tanza.html</a></p>
]]></description>
        	        	<pubDate>Sun, 30 Jan 2011 23:33:03 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on Search Toolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2#p21887</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2#p21887</guid>
        	        	<description><![CDATA[<p>The main error in your code was that you used very strange <strong>index</strong> column properties. &#160;You code has also many small errors. Compare your version with <a href="http://ok-soft-gmbh.com/jqGrid/LaStanza.htm" target="_blank">the fixed version</a>&#160;and you will see what I mean.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Sun, 30 Jan 2011 21:17:23 +0200</pubDate>
        </item>
        <item>
        	<title>cleaner on Search Toolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2#p21885</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2#p21885</guid>
        	        	<description><![CDATA[<p>mmm..:</p>
<p>1) I Download jqgrid with Grid base(jqGrid) and Custom(Additinal methods).</p>
<p>2) I write this code:</p>
</p>
<p><input type='button' class='sfcodeselect' name='sfselectit8242' value='Select Code' data-codeid='sfcode8242' /></p>
<div class='sfcode' id='sfcode8242'>&#60;html&#62;<br />&#60;head&#62;<br />&#60;title&#62;jQuery Hello World Alert box&#60;/title&#62;<br />&#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; media=&#34;screen&#34; href=&#34;css/ui-lightness/jquery-ui-1.8.9.custom.css&#34; /&#62;<br />&#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; media=&#34;screen&#34; href=&#34;css/ui.jqgrid.css&#34; /&#62;<br />&#60;script src=&#34;js/jquery-1.4.2.min.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;<br />&#60;script src=&#34;js/i18n/grid.locale-it.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;<br />&#60;script src=&#34;js/jquery.jqGrid.min.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;<br />&#60;table id=&#34;list19&#34;&#62;&#60;/table&#62;<br />&#60;div id=&#34;gridpager&#34;&#62;&#60;/div&#62; <br />&#60;/head&#62;<br />&#160;&#60;script type=&#34;text/javascript&#34;&#62;<br />$(document).ready(function()<br />{<br />&#160;&#160; &#160;<br />&#160;&#160; &#160;jQuery(&#34;#list19&#34;).jqGrid<br />&#160;&#160; &#160;({ <br />&#160;&#160; &#160;&#160;&#160; &#160;url: &#39;ranking.xml&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;datatype: &#34;xml&#34;, <br />&#160;&#160; &#160;&#160;&#160; &#160;colNames:[&#34;Squadra&#34;,&#34;Giocate&#34;,&#34;Vinte&#34;,&#34;Perse&#34;,&#34;Pareggiate&#34;,&#34;Gol fatti&#34;,&#34;Gol Subiti&#34;,&#34;Diff.reti&#34;,&#34;Punti&#34;], <br />&#160;&#160; &#160;&#160;&#160; &#160;colModel :[ <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;squadra&#39;, index:&#39;team&#39;, width:100, search:true, xmlmap:&#34;squadra&#34;}, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;giocate&#39;, index:&#39;plays&#39;, width:100, xmlmap:&#34;giocate&#34;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;vinte&#39;, index:&#39;win&#39;, width:100, xmlmap:&#34;vinte&#34;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;perse&#39;, index:&#39;lost&#39;, width:100, xmlmap:&#34;perse&#34;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;pareggiate&#39;, index:&#39;tie&#39;, width:100, xmlmap:&#34;pareggiate&#34;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;gol_x0020_fatti&#39;, index:&#39;gfatti&#39;, width:100, xmlmap:&#34;gol_x0020_fatti&#34;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;gol_x0020_subiti&#39;, index:&#39;gsubiti&#39;, width:100, xmlmap:&#34;gol_x0020_subiti&#34;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;differenza_x0020_reti&#39;, index:&#39;diffreti&#39;, width:100, xmlmap:&#34;differenza_x0020_reti&#34;},<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; {name:&#39;punti&#39;, index:&#39;pnt&#39;, width:100, xmlmap:&#34;punti&#34;}<br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160; ], &#160;&#160; &#160;<br />&#160;&#160; &#160;&#160;&#160; &#160;height:100, <br />&#160;&#160; &#160;&#160;&#160; &#160;rowNum:10, <br />&#160;&#160; &#160;&#160;&#160; &#160;rowList:[10,20,30],<br />&#160;&#160; &#160;&#160;&#160; &#160;pager : &#39;#gridpager&#39;,<br />&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;loadonce: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;xmlReader: { <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;root : &#34;NewDataSet&#34;, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;row: &#34;Table&#34;, <br />&#160;&#160; &#160;&#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;&#160;&#160; &#160;id: &#34;squadra&#34; <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;},<br />&#160;&#160; &#160;&#160;&#160; &#160;sortorder: &#34;punti&#34;,<br />&#160;&#160; &#160;&#160;&#160; &#160;caption:&#39;Classifica&#39;<br />&#160;&#160; &#160;});<br />&#160;&#160; &#160;jQuery(&#34;#list19&#34;).jqGrid(&#39;filterToolbar&#39;, {stringResult: true, searchOnEnter: false, defaultSearch:&#34;cn&#34;});<br />&#160;&#160; &#160;<br />});<br />&#60;/script&#62;<br />&#60;body&#62;<br />&#60;br&#62;<br />&#60;br&#62;<br />&#60;/body&#62;<br />&#60;/html&#62;</div>
<p>3) The output is: lineguides.netsons.org/myproject3/LaStanza.html</p>
</p>
<p>The toolbar search is visible but doesn&#39;t work, try it..</p>
<p>some files must be configured with the fields of research?</p>
<p>thank you very much;)</p></p>
]]></description>
        	        	<pubDate>Sun, 30 Jan 2011 16:43:33 +0200</pubDate>
        </item>
        <item>
        	<title>OlegK on Search Toolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2#p21883</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2#p21883</guid>
        	        	<description><![CDATA[<p>You should insert call of the function <a href="/jqgridwiki/doku.php?id=wiki:toolbar_searching" target="_blank">filterToolbar</a> after the definition of the grid. For example</p>
<p><input type='button' class='sfcodeselect' name='sfselectit1649' value='Select Code' data-codeid='sfcode1649' /></p>
<div class='sfcode' id='sfcode1649'>jQuery(&#34;#list19&#34;).jqGrid(&#39;filterToolbar&#39;, {stringResult: true, searchOnEnter: false, defaultSearch:&#34;cn&#34;});</div>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Sun, 30 Jan 2011 14:58:55 +0200</pubDate>
        </item>
        <item>
        	<title>cleaner on Search Toolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2#p21882</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/search-toolbar-2#p21882</guid>
        	        	<description><![CDATA[<p>hi,</p>
<p>how do you insert search&#39;s toolbar in my Grid? I read the documentation but doesn&#39;t work..:(</p>
<p>help:D thanks</p>
<p>this is my code:</p>
<pre><p><input type='button' class='sfcodeselect' name='sfselectit2707' value='Select Code' data-codeid='sfcode2707' /></p><div class='sfcode' id='sfcode2707'>$(document).ready(function()<br />{<br /> <br /> jQuery(&#34;#list19&#34;).jqGrid<br /> ({ <br /> url: &#39;ranking.xml&#39;, <br /> datatype: &#34;xml&#34;, <br /> colNames:[&#34;Squadra&#34;,&#34;Giocate&#34;,&#34;Vinte&#34;,&#34;Perse&#34;,&#34;Pareggiate&#34;,&#34;Gol fatti&#34;,&#34;Gol Subiti&#34;,&#34;Diff.reti&#34;,&#34;Punti&#34;], <br /> colModel :[ <br /> {name:&#39;squadra&#39;, index:&#39;team&#39;, width:100, xmlmap:&#34;squadra&#34;}, <br /> {name:&#39;giocate&#39;, index:&#39;plays&#39;, width:100, xmlmap:&#34;giocate&#34;},<br /> {name:&#39;vinte&#39;, index:&#39;win&#39;, width:100, xmlmap:&#34;vinte&#34;},<br /> {name:&#39;perse&#39;, index:&#39;lost&#39;, width:100, xmlmap:&#34;perse&#34;},<br /> {name:&#39;pareggiate&#39;, index:&#39;tie&#39;, width:100, xmlmap:&#34;pareggiate&#34;},<br /> {name:&#39;gol_x0020_fatti&#39;, index:&#39;gfatti&#39;, width:100, xmlmap:&#34;gol_x0020_fatti&#34;},<br /> {name:&#39;gol_x0020_subiti&#39;, index:&#39;gsubiti&#39;, width:100, xmlmap:&#34;gol_x0020_subiti&#34;},<br /> {name:&#39;differenza_x0020_reti&#39;, index:&#39;diffreti&#39;, width:100, xmlmap:&#34;differenza_x0020_reti&#34;},<br /> {name:&#39;punti&#39;, index:&#39;pnt&#39;, width:100, xmlmap:&#34;punti&#34;}<br /> ], 	<br /> height:100, <br /> rowNum:10, <br /> rowList:[10,20,30],<br /> pager: &#39;#pagernav&#39;,<br /> viewrecords: true, <br /> loadonce: true, <br /> xmlReader: { <br /> root : &#34;NewDataSet&#34;, <br /> row: &#34;Table&#34;, <br /> repeatitems: false, <br /> id: &#34;squadra&#34; <br /> },<br /> sortorder: &#34;punti&#34;,<br /> caption:&#39;Classifica&#39;<br /> });</div><br /></pre>
]]></description>
        	        	<pubDate>Sun, 30 Jan 2011 11:31:26 +0200</pubDate>
        </item>
</channel>
</rss>