<?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</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-1</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-1/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Integrated Search Toolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-1#p17360</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-1#p17360</guid>
        	        	<description><![CDATA[<p>You will need to perform search server side. Download the demo files and see how to do this.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Thu, 20 May 2010 19:56:32 +0300</pubDate>
        </item>
        <item>
        	<title>andy1221 on Integrated Search Toolbar</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-1#p17256</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/integrated-search-toolbar-1#p17256</guid>
        	        	<description><![CDATA[<p>Hello eveyone,</p>
<p>I&#39;m trying to use integrated search toolbar. I&#39;m getting search options but when I enter any search value, my result is not filtered out.I&#39;m getting the same result.Following is my code.</p>
<p>.htm file&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>
<!-- html, body { 	margin: 0; 	padding: 0; 	font-size: 75%; 	text-align: center; 	padding-left:200px;      } --> <!-- jQuery(document).ready(function(){    var mygrid=jQuery("#list").jqGrid({     url:&#39;example.php?q=1&#39;,     datatype: &#39;xml&#39;,     mtype: &#39;GET&#39;,     colNames:[&#39;CHANNEL&#39;,&#39;SHOW_TITLE&#39;, &#39;EPISODE_TITLE&#39;,&#39;START DATE/TIME&#39;],     colModel :[        {name:&#39;CHANNEL&#39;, index:&#39;CHANNEL&#39;, width:120, align:"right", stype:&#39;select&#39;, editoptions:{value:":No Filter;:CNBC;:MSNBC;:NBC;:USA"}},        {name:&#39;SHOW_TITLE&#39;, index:&#39;SHOW_TITLE&#39;, width:300},        {name:&#39;EPISODE_TITLE&#39;, index:&#39;EPISODE_TITLE&#39;, width:300},        {name:&#39;START_DATETIME&#39;, index:&#39;START_DATETIME&#39;, width:150, search: false},       // {name:&#39;START_TIME&#39;, index:&#39;START_TIME&#39;, width:80, align:&#39;right&#39;}       // {name:&#39;note&#39;, index:&#39;note&#39;, width:150, sortable:false}      ],     pager: &#39;#pager&#39;,     rowNum:100, 	height:700, 	//width:1300, 	toolbar : [true,"top"],     sortname: &#39;START_DATETIME&#39;,     sortorder: &#39;asc&#39;,     viewrecords: true, 	rownumbers: true, 	caption: &#39;TEST MY FIRST GRID&#39;, 	subGrid: true,     subGridRowExpanded: function(subgrid_id, row_id) {     // we pass two parametersi      // subgrid_id is a id of the div tag created within a table     // the row_id is the id of the row     // If we want to pass additional parameters to the url we can use     // the method getRowData(row_id) - which returns associative array in type name-value     // here we can easy construct the following        var subgrid_table_id, pager_id;        subgrid_table_id = subgrid_id+"_t"; 	   pager_id = "p_"+subgrid_table_id;        jQuery("#"+subgrid_id).html(" 




<table id=&#39;"+subgrid_table_id+"&#39;>
</table>








<div id=&#39;"+pager_id+"&#39; style=&#39;height:20&#39;></div>




");        jQuery("#"+subgrid_table_id).jqGrid({           url:"subgrid.php?id="+row_id,           datatype: "xml",           colNames: [&#39;Title&#39;,&#39;Album&#39;,&#39;Artist&#39;,&#39;Composers&#39;,&#39;Publishers&#39;,&#39;Custom&#39;],           colModel: [             {name:"num",index:"num",width:80,key:true},             {name:"item",index:"item",width:130},             {name:"qty",index:"qty",width:80,align:"right"},             {name:"unit",index:"unit",width:80,align:"right"},                        {name:"total",index:"total",width:100,align:"right",sortable:false}, 			{name:"unit",index:"unit",width:80,align:"right"}           ],           height: &#39;100%&#39;,           rowNum:20,           sortname: &#39;num&#39;, 		  pager: pager_id,           sortorder: "asc"        }); 	   jQuery("#"+subgrid_table_id).jqGrid(&#39;navGrid&#39;,"#"+pager_id,{edit:false,add:false,del:false})    },    subGridRowColapsed: function(subgrid_id, row_id) { 		// this function is called before removing the data 		//var subgrid_table_id; 		//subgrid_table_id = subgrid_id+"_t"; 		//jQuery("#"+subgrid_table_id).remove(); 	}     });    jQuery("#list").jqGrid(&#39;navGrid&#39;,&#39;#pager&#39;,{position:&#39;left&#39;},{edit:false,add:false,del:false,search:false,refresh:false});   jQuery("#list").jqGrid(&#39;navButtonAdd&#39;,"#pager",{caption:"Toggle",title:"Toggle Search Toolbar", buttonicon :&#39;ui-icon-pin-s&#39;, 	onClickButton:function(){ 		mygrid[0].toggleToolbar() 	} }); jQuery("#list").jqGrid(&#39;navButtonAdd&#39;,"#pager",{caption:"Clear",title:"Clear Search",buttonicon :&#39;ui-icon-refresh&#39;, 	onClickButton:function(){ 		mygrid[0].clearToolbar() 	} });   jQuery("#list").jqGrid(&#39;filterToolbar&#39;); });  // --></p>
]]></description>
        	        	<pubDate>Mon, 17 May 2010 23:46:38 +0300</pubDate>
        </item>
</channel>
</rss>