﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - Lounge - Filter webgrid at client side</title><link>http://www.intersoftsolutions.com/Community/Lounge/Filter-webgrid-at-client-side/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Filter webgrid at client side</title><link>http://www.intersoftsolutions.com/Community/Lounge/Filter-webgrid-at-client-side/</link><pubDate>Thu, 16 Oct 2014 04:15:47 GMT</pubDate><dc:creator>Hans</dc:creator><category>rupesh</category><category>filter grid</category><category>cliet side</category><description>&lt;p&gt;Hello,&lt;br&gt;&lt;br&gt;My apologies.&lt;br&gt;&lt;br&gt;By default, the WebGrid’s binding operation mode is using ‘server-side binding’ mode. So (in this case) the filtering process will go to server side.&lt;br&gt;&lt;br&gt;To achieve your scenario, I suggest you to use ‘client-side binding’ mode on your WebGrid. &lt;br&gt;Client-side binding is a mechanism that processes data operation and binding life-cycle entirely in the client-side.&lt;br&gt;By using this binding operation mode, the filtering process will not go to server side.&lt;br&gt;&lt;br&gt;Intersoft has provided a couple of samples that show how-to use client-side binding &amp;amp; how the client-side binding works.&lt;br&gt;Please kindly have review on the WebGrid Solution Samples to see the result.&lt;br&gt;&lt;br&gt;For further information regarding client-side binding, you could see from WebGrid’s documentation:&lt;br&gt;http://www.intersoftpt.com/Support/WebGrid/Documentation/topic512.html&lt;br&gt;&lt;br&gt;Hope this helps.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Hans K.&lt;br&gt;&lt;/p&gt;</description></item><item><title>Filter webgrid at client side</title><link>http://www.intersoftsolutions.com/Community/Lounge/Filter-webgrid-at-client-side/</link><pubDate>Wed, 15 Oct 2014 12:02:30 GMT</pubDate><dc:creator>rupeshshakti</dc:creator><category>rupesh</category><category>filter grid</category><category>cliet side</category><description>&lt;p&gt;Hi Hans,&lt;/p&gt;&lt;p&gt;Thanks for the Reply but my explanation you did not get.&lt;/p&gt;&lt;p&gt;My qusetion is:&lt;/p&gt;&lt;p&gt;when my webgrid is binded through code behind(using e.datasource) and I am trying to filter something from filter section in the webgrid, It goes to server side.&lt;/p&gt;&lt;p&gt;Here I want to restrict the grid not to go server side filter on page itself.&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;Is it Possible?&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Regards&lt;/p&gt;&lt;p&gt;Rupesh Shakti&lt;/p&gt;</description></item><item><title>Filter webgrid at client side</title><link>http://www.intersoftsolutions.com/Community/Lounge/Filter-webgrid-at-client-side/</link><pubDate>Tue, 14 Oct 2014 04:24:11 GMT</pubDate><dc:creator>Hans</dc:creator><category>rupesh</category><category>filter grid</category><category>cliet side</category><description>&lt;p&gt;Hello,&lt;br&gt;&lt;br&gt;Thank you for the question regarding WebGrid.&lt;br&gt;&lt;br&gt;I have created a WebGrid sample that show how to add filter to WebGrid from JavaScript code.&lt;br&gt;I bind the WebGrid to access data source (Northwind.mdb database &amp;amp; Shippers table).&lt;br&gt;&lt;br&gt;Here’s the snippet example code how to add filter:&lt;br&gt;&lt;/p&gt;&lt;pre&gt;function AddFilter(){
    var grid = ISGetObject("WebGrid1");
    var newFilter = new WebGridFilter();
    newFilter.ColumnMember = "CompanyName";
    newFilter.FilterType = "Like";
    newFilter.FilterText = "United";                
    grid.RootTable.FilteredColumns.Add(newFilter);                            
    grid.RootTable.UpdateUI();
    grid.Refresh();
}&lt;/pre&gt;&lt;p&gt;As you can see, I tried to filter the ‘CompanyName’ column that has ‘United’ value.&lt;br&gt;&lt;br&gt;I attached the sample so that you can have review on the sample as well.&lt;br&gt;&lt;br&gt;From further information about programmatic filter, you could follow this link below (“Add and remove Filtered Column programmatically” section):&lt;br&gt;http://www.intersoftpt.com/Support/WebGrid/Documentation/topic512.html&lt;br&gt;&lt;br&gt;Hope this helps.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Hans K.&lt;br&gt;&lt;/p&gt;</description></item><item><title>Filter webgrid at client side</title><link>http://www.intersoftsolutions.com/Community/Lounge/Filter-webgrid-at-client-side/</link><pubDate>Mon, 13 Oct 2014 10:57:26 GMT</pubDate><dc:creator>rupeshshakti</dc:creator><category>rupesh</category><category>filter grid</category><category>cliet side</category><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I want to filter my grid at cliet side, no need to go on server side.&lt;/p&gt;&lt;p&gt;is there any way to not go server side while filter into webgrid.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;Regards&lt;/p&gt;&lt;p&gt;Rupesh Shakti&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>