how to perform filter operation in grid view values using ajax multislider extender?http://forums.asp.net/t/1800972.aspx/1?how+to+perform+filter+operation+in+grid+view+values+using+ajax+multislider+extender+Mon, 07 May 2012 15:07:10 -040018009724969033http://forums.asp.net/p/1800972/4969033.aspx/1?how+to+perform+filter+operation+in+grid+view+values+using+ajax+multislider+extender+how to perform filter operation in grid view values using ajax multislider extender? <p>i bind airline and price values in grid view. And now i want to perform filter operation on grid view using ajax multi slider extender.</p> <p>ex:</p> <p>airlie: price</p> <p>aa&nbsp;&nbsp;&nbsp;&nbsp; 5000</p> <p>bb&nbsp;&nbsp;&nbsp;&nbsp; 10000</p> <p>cc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2000</p> <p>(Fliter using ajax multislider Extednder)</p> <p></p> <p>how to do that? i am in need now..&nbsp; thanks in advance..</p> 2012-05-07T12:06:46-04:004969232http://forums.asp.net/p/1800972/4969232.aspx/1?Re+how+to+perform+filter+operation+in+grid+view+values+using+ajax+multislider+extender+Re: how to perform filter operation in grid view values using ajax multislider extender? <p>I started with this.</p> <p><a href="http://www.asp.net/web-forms/tutorials/ajax-control-toolkit/slider/using-the-slider-control-with-auto-postback-cs">http://www.asp.net/web-forms/tutorials/ajax-control-toolkit/slider/using-the-slider-control-with-auto-postback-cs</a></p> <p>And built this real quick.&nbsp; It uses a table that has two fields, a string field (aaa, bbb, ccc) and a value field (123.50, 440.10, 225.50).</p> <p>This is hardly an ideal solution but should get you where you need to go.</p> <pre class="prettyprint">&lt;div&gt; &lt;asp:ScriptManager ID=&quot;s1&quot; runat=&quot;server&quot; /&gt; &lt;asp:TextBox ID=&quot;txtValueFilter&quot; runat=&quot;server&quot; AutoPostBack=&quot;true&quot; /&gt; &lt;asp:TextBox ID=&quot;sliderValue&quot; runat=&quot;server&quot; AutoPostBack=&quot;true&quot; /&gt; &lt;ajaxToolkit:SliderExtender ID=&quot;se1&quot; runat=&quot;server&quot; TargetControlID=&quot;sliderValue&quot; BoundControlID=&quot;txtValueFilter&quot; Minimum=&quot;0&quot; Maximum=&quot;1000&quot; /&gt; &lt;br /&gt; &lt;asp:UpdatePanel ID=&quot;upd1&quot; runat=&quot;server&quot;&gt; &lt;ContentTemplate&gt; &lt;asp:GridView ID=&quot;GridView1&quot; runat=&quot;server&quot; DataSourceID=&quot;SqlDataSource1&quot; AutoGenerateColumns=&quot;False&quot; DataKeyNames=&quot;id&quot; Width=&quot;313px&quot;&gt; &lt;Columns&gt; &lt;asp:BoundField DataField=&quot;name&quot; HeaderText=&quot;name&quot; SortExpression=&quot;name&quot; /&gt; &lt;asp:BoundField DataField=&quot;value&quot; HeaderText=&quot;value&quot; SortExpression=&quot;value&quot; /&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; &lt;asp:SqlDataSource ID=&quot;SqlDataSource1&quot; runat=&quot;server&quot; ConnectionString=&quot;&lt;%$ ConnectionStrings:TestConnectionString %&gt;&quot; SelectCommand=&quot;SELECT [id], [name], [value] FROM [Values] WHERE ([value] &amp;gt; @value)&quot;&gt; &lt;SelectParameters&gt; &lt;asp:ControlParameter ControlID=&quot;txtValueFilter&quot; DefaultValue=&quot;0&quot; Name=&quot;value&quot; PropertyName=&quot;Text&quot; Type=&quot;Double&quot; /&gt; &lt;/SelectParameters&gt; &lt;/asp:SqlDataSource&gt; &lt;/ContentTemplate&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID=&quot;s1&quot; EventName=&quot;Load&quot; /&gt; &lt;/Triggers&gt; &lt;/asp:UpdatePanel&gt; &lt;/div&gt;</pre> <p></p> 2012-05-07T13:51:46-04:004969336http://forums.asp.net/p/1800972/4969336.aspx/1?Re+how+to+perform+filter+operation+in+grid+view+values+using+ajax+multislider+extender+Re: how to perform filter operation in grid view values using ajax multislider extender? <p>Filter Gridview using AJAX slider -&nbsp;<a href="http://www.dotnetfunda.com/articles/article818-filter-gridview-records-using-ajax-slider-control.aspx">http://www.dotnetfunda.com/articles/article818-filter-gridview-records-using-ajax-slider-control.aspx</a>&nbsp;</p> <p>Thanks,</p> 2012-05-07T14:51:48-04:004969362http://forums.asp.net/p/1800972/4969362.aspx/1?Re+how+to+perform+filter+operation+in+grid+view+values+using+ajax+multislider+extender+Re: how to perform filter operation in grid view values using ajax multislider extender? <p>hi</p> <p>you can try Jquery UI slider to enjoy real time filter. I have also used this and its working great.</p> <p><a href="http://jqueryui.com/demos/slider/#range">http://jqueryui.com/demos/slider/#range</a></p> <p>Thanks</p> 2012-05-07T15:07:10-04:00