<?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: How to implement search</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search</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/how-to-implement-search/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on How to implement search</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30700</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30700</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>multipleSearch and multipleGroup  parameters should be set to true when you call searchGrid</p>
<p>Regards<br />
Tony</p>
]]></description>
        	        	<pubDate>Fri, 30 May 2014 14:01:05 +0300</pubDate>
        </item>
        <item>
        	<title>tifischer on How to implement search</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30685</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30685</guid>
        	        	<description><![CDATA[<p>I also implemented the demo Search Templates and again the search operators do not display.Â  The template shows up and the data value shows up but no search operator. Please let me know what I am doing wrong.</p>
<p>Â </p>
<p>Blessings,</p>
<p>Tiffany</p>
]]></description>
        	        	<pubDate>Mon, 26 May 2014 18:40:00 +0300</pubDate>
        </item>
        <item>
        	<title>tifischer on How to implement search</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30683</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30683</guid>
        	        	<description><![CDATA[<p>Also, when I implement the <span class="cell-wrapper" style="cursor: pointer">Live Data Manipulation <span class="cell-wrapperleaf">Searching Data</span></span> demo on my site I do not see the search operators in the drop down ('equals', 'contains', 'not equals'...) .Â  Please advise as to how to get the searchable operators to display.</p>
<p>Â </p>
<p><input type='button' class='sfcodeselect' name='sfselectit7888' value='Select Code' data-codeid='sfcode7888' /></p>
<div class='sfcode' id='sfcode7888'>
jQuery(document).ready(function(){</p>
<p> jQuery("#person_list").jqGrid({<br />
 url:'server-update.php?q=1',<br />
 datatype: "json",<br />
 colNames:['ID','Type','Last','First','Email','Phone','Address','Custom','Registrations','Balance'],<br />
 colModel:[<br />
 //{name:'', sortable:true, index:'a.personType', width:25, hidden:false,search:false,hidedlg:true},<br />
 //search ID on<br />
 //{name:'', index:'a.personID', width:20, hidden:false,searchoptions:{sopt:['bw','cn','eq','ne','lt','gt','ew']}},<br />
 //search ID off<br />
 {name:'ID',key : true, index:'a.personID', width:20},<br />
 {name:'Type', index:'isStudent', sortable:true, width:25},<br />
 {name:'Last', index:'a.lastName', width:40},<br />
 {name:'First', index:'a.firstName', width:30},<br />
 {name:'Email', sortable:true, index:'a.emailAddress', width:60},<br />
 {name:'Phone', sortable:false,index:'phone', width:35},<br />
 {name:'Address', sortable:false,index:'address', width:100},<br />
 {name:'Custom', sortable:false,search:false, hidden:false, index:'custom', width:30},<br />
 {name:'Registrations', sortable:false,search:false, hidden:false, index:'programCode', width:100},<br />
 {name:'Balance', sortable:false,search:false, hidden:false, index:'balance', width:40} //CN change 30 to 40<br />
 ],<br />
 rowNum:7,<br />
 autowidth: true,<br />
 pager: '#pagerb',<br />
 sortname: 'lastName',<br />
 rowList:[10,20,50,100],<br />
 viewrecords: true,<br />
 sortorder: "asc",<br />
 caption: "",</p>
<p>});</p>
<p> $("#bsdata").click(function(){<br />
 // jQuery("#person_list").jqGrid('navGrid','#pagerb',{edit:false,add:false,del:false},<br />
 //{},{},{},<br />
 //{multipleSearch:true, multipleGroup:true});<br />
 jQuery("#person_list").jqGrid('searchGrid', {sopt:['cn','bw','eq','ne','lt','gt','ew']} );});</p>
<p> });</p>
</div>
]]></description>
        	        	<pubDate>Mon, 26 May 2014 18:15:47 +0300</pubDate>
        </item>
        <item>
        	<title>tifischer on How to implement search</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30682</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30682</guid>
        	        	<description><![CDATA[<p>How do I get the multipleSearch and the search operations to show?</p>
<p>I see the multi search but there are no qualifiers to search by like "contains" or "equals".</p>
<p>In the demos I really like the Live Data Manipulation with the "Searching Data" section but I need to have mutiple selectors listed.Â  How do I add the mutiplesearch functionality to this demo?</p>
<p>The reason that I am need this functionality is to allow users to perform a date range search.</p>
<p>Â </p>
<p>Blessings,</p>
<p>Tiffany</p>
]]></description>
        	        	<pubDate>Mon, 26 May 2014 18:01:14 +0300</pubDate>
        </item>
        <item>
        	<title>tony on How to implement search</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30657</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30657</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I'm not sure that I understand the problem.</p>
<p>Regards</p>
]]></description>
        	        	<pubDate>Thu, 22 May 2014 14:25:23 +0300</pubDate>
        </item>
        <item>
        	<title>tifischer on How to implement search</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30647</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-implement-search#p30647</guid>
        	        	<description><![CDATA[<p>Can I move the search icon?&#160; I recently made an update and the search box that allowed me to search by name, date, etc&#8230;&#160; has changed a lot.&#160; I was able to type in a date greater than and a date less than or search by first name and last name containing &#8230; how can I do that?</p>
<p>&#160;</p>
<p>I see the complex search and implemented it but it looks the same.&#160; I am looking for just the two search areas with drop down selector for the columns, selector for oporation, and input field to search by.</p>
<p>How do I search the date such that people can search using the traditional English date format mm/dd/yyyy instead of the <span class="comment-copy">ISO 8601 date format?</span></p>
<p>Can the date be formatted in the English format in the older version of jqgrid (3.5.3)?</p>
<p>Blessings,</p>
<p>Tiffany</p>
]]></description>
        	        	<pubDate>Tue, 20 May 2014 17:43:48 +0300</pubDate>
        </item>
</channel>
</rss>