<?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: Integrated Search Toolbar problem</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-problem</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/integrated-search-toolbar-problem/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>deanclkclk on Integrated Search Toolbar problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-problem#p21528</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-problem#p21528</guid>
        	        	<description><![CDATA[<p>BTW, I have these .js and .css files already included in my project</p>
<ol>
<li>ui-lightness/jquery-ui-1.8.7.custom.css</li>
<li>ui.jqgrid.css</li>
<li>jquery-1.4.4.min.js</li>
<li>i18n/grid.locale-en.js</li>
<li>jquery.jqGrid.min.js</li>
<li>jquery-ui-1.8.7.custom.min.js</li>
</ol>
]]></description>
        	        	<pubDate>Tue, 04 Jan 2011 16:45:10 +0200</pubDate>
        </item>
        <item>
        	<title>deanclkclk on Integrated Search Toolbar problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-problem#p21527</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-problem#p21527</guid>
        	        	<description><![CDATA[<p>Tony, I did follow the tutorial, as I&#39;ve already implemented other data grid with JqGrid in my application. For some reason, the "Integrated Search Toolbar" I found from <a href="http://www.trirand.com/blog/jqgrid/jqgrid.html" rel="nofollow" target="_blank"><a href="http://www.trirand.com/blog/jq" rel="nofollow">http://www.trirand.com/blog/jq</a>.....qgrid.html</a> isn&#39;t working.</p>
<p>here&#39;s my code:</p>
</p>
<p><strong>&#60;table id="s2list"&#62;&#60;/table&#62; <br />&#60;div id="s2pager"&#62;&#60;/div&#62; <br />&#60;div id="filter" style="margin-left:30%;display:none"&#62;Search Invoices&#60;/div&#62;<br /></strong></p>
</p>
<p><strong>&#60;script type="text/javascript"&#62;</strong></p>
<p>&#160;&#160; &#160;var mygrid = jQuery("#s3list").jqGrid({ <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;url:&#39;search.php?q=1&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;datatype: "json", <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;width: 700, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colNames:[&#39;Inv No&#39;,&#39;Date&#39;, &#39;Client&#39;, &#39;Amount&#39;,&#39;Tax&#39;,&#39;Total&#39;,&#39;Notes&#39;], <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;colModel:[ {name:&#39;id&#39;,index:&#39;id&#39;, width:65}, {name:&#39;invdate&#39;,index:&#39;invdate&#39;, width:90,searchoptions:{dataInit:function(el){$(el).datepicker({dateFormat:&#39;yy-mm-dd&#39;});} }}, {name:&#39;name&#39;,index:&#39;name&#39;, width:100}, {name:&#39;amount&#39;,index:&#39;amount&#39;, width:80, align:"right"}, {name:&#39;tax&#39;,index:&#39;tax&#39;, width:80, align:"right", stype:&#39;select&#39;, editoptions:{value:":All;0.00:0.00;12:12.00;20:20.00;40:40.00;60:60.00;120:120.00"}}, {name:&#39;total&#39;,index:&#39;total&#39;, width:80,align:"right"}, {name:&#39;note&#39;,index:&#39;note&#39;, width:150, sortable:false} ], <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rowNum:10, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;mtype: "POST", <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rowList:[10,20,30], <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;pager: &#39;#s3pager&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;sortname: &#39;id&#39;, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;viewrecords: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;rownumbers: true, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;sortorder: "desc", <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;gridview : true, <br />&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; &#160;caption:"Toolbar Search Example" }); <br />&#160;&#160; &#160;<br />&#160;&#160; &#160;jQuery("#s3list").jqGrid(&#39;navGrid&#39;,&#39;#s3pager&#39;,{edit:false,add:false,del:false,search:false,refresh:false}); </p>
<p>&#160;&#160; &#160;jQuery("#s3list").jqGrid(&#39;navButtonAdd&#39;,"#s3pager",{caption:"Toggle",title:"Toggle Search Toolbar", buttonicon :&#39;ui-icon-pin-s&#39;, onClickButton:function(){ mygrid[0].toggleToolbar() } }); </p>
<p>&#160;&#160; &#160;jQuery("#s3list").jqGrid(&#39;navButtonAdd&#39;,"#s3pager",{caption:"Clear",title:"Clear Search",buttonicon :&#39;ui-icon-refresh&#39;, onClickButton:function(){ mygrid[0].clearToolbar() } }); </p>
<p>&#160;&#160; &#160;jQuery("#s3list").jqGrid(&#39;filterToolbar&#39;); <strong></strong></p>
<p>&#60;/script&#62;</p>
]]></description>
        	        	<pubDate>Tue, 04 Jan 2011 16:40:46 +0200</pubDate>
        </item>
        <item>
        	<title>tony on Integrated Search Toolbar problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-problem#p21436</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-problem#p21436</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>Please follow this instructions first:</p>
<p><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></p>
</p>
<p>And then implemetnt other things.</p>
</p>
<p>Kind Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Sun, 26 Dec 2010 14:19:03 +0200</pubDate>
        </item>
        <item>
        	<title>deanclkclk on Integrated Search Toolbar problem</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-problem#p21414</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-problem#p21414</guid>
        	        	<description><![CDATA[<p>Hello...I&#39;m following the tutorial on Integrated search toolbar and I&#39;ve downloaded (click everything including custom) from Jquery UI. I&#39;m not sure what&#39;s the problem because, nothing isn&#39;t show up on my page (including the grid itself). I realize there is an src "&#60;script src="search2.js" type="text/javascript"&#62; &#60;/script&#62;" called "search2.js"....not sure if this is a dependency why the grid isn&#39;t working. Any ideas?</p>
</p>
<p>thankis,</p>
<p>Dean.</p>
]]></description>
        	        	<pubDate>Fri, 24 Dec 2010 00:50:57 +0200</pubDate>
        </item>
</channel>
</rss>