Hi,
I am working on Project which has a Radgrid, project was running successfully and the out come is alright. But my problem is filtering and paging is not working.
<telerik:RadGrid ID="RadGrid1" Skin="WebBlue" runat="server" AllowFilteringByColumn="true" AutoGenerateColumns="true" ShowStatusBar="True" GridLines="None" AllowPaging="true" PageSize="20" AllowSorting="True" onitemdatabound="RadGrid1_ItemDataBound" EnableLinqExpressions ="false">
<PagerStyle Mode="NextPrevAndNumeric" />
<GroupingSettings CaseSensitive="false" />
<MasterTableView AutoGenerateColumns="false" EditMode="InPlace" AllowFilteringByColumn="True"
ShowFooter="True" TableLayout="Auto" AllowSorting="true" AllowPaging="true" PageSize="20">
<Columns>
<telerik:GridBoundColumn FilterControlWidth="50px" DataField=" total_float " HeaderText="Total Float" SortExpression=" total_float " UniqueName=" total_float ">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
This is my code and i placed only one row for sample.
Also i placed this in my code(VB) behind file.
Can any one help me, Thanks in advance.

RadComboBoxItem Item6 = new RadComboBoxItem(Resources.Ticket.Action_Knowledge_Base);Item6.Value = "1";Item6.ImageUrl = "../Content/images/contextmenu/knowledgebase.png";ddl_Actions.Items.Insert(8, Item6);RadComboBoxItem Item7 = new RadComboBoxItem(Resources.Ticket.Action_CustomAction);Item7.Value = "9";Item7.ImageUrl = "../Content/images/contextmenu/caction.png";ddl_Actions.Items.Insert(9, Item7);RadComboBoxItem Item8 = new RadComboBoxItem(Resources.Ticket.Ticket_RemoveFromFolder);Item8.Value = "12";Item8.ImageUrl = "../Content/images/contextmenu/remove-from-folder.png";ddl_Actions.Items.Insert(10, Item8);RadComboBoxItem Item10 = new RadComboBoxItem(Resources.Ticket.Ticket_Create_Change_Request);Item10.Value = "10";Item10.ImageUrl = "../Content/images/contextmenu/changerequest_conf.png";ddl_Actions.Items.Insert(11, Item10);RadComboBoxItem Item11 = new RadComboBoxItem(Resources.TicketSubscription.Subscribe);Item11.Value = "11";Item11.ImageUrl = "../Content/images/contextmenu/subscribe.png";ddl_Actions.Items.Insert(12, Item11);using (var db = new TBSHelpDeskDataContext(Globals.strCon)){ var md = (from a in db.CustomActions select new { a.CustomAction_ID, a.Name }).ToList(); ddl_Actions.DataSource = md; ddl_Actions.DataValueField = "CustomAction_ID"; ddl_Actions.DataTextField = "Name"; ddl_Actions.DataBind();}

<ItemTemplate> <telerik:RadNumericTextBox ID="lblNominationInstruction" runat="server" MaxLength="15" Width="100px" Visible="true" MinValue="0" NumberFormat-DecimalDigits="4" NumberFormat-DecimalSeparator="." NumberFormat-GroupSeparator="," NumberFormat-GroupSizes="3" NumberFormat-KeepNotRoundedValue="True" DisabledStyle-BorderStyle="None" Enabled="false" DisabledStyle-BackColor="Transparent" DisabledStyle-ForeColor="Black" Style="text-align: right" Text='<%# DataBinder.Eval(Container.DataItem, "EntryQuantity")%>'> </telerik:RadNumericTextBox> <asp:TextBox ID="txtNominationInstruction" MaxLength="15" runat="server" Visible="false" Width="100px" Style="text-align: right"></asp:TextBox></ItemTemplate>


<telerik:RadComboBox ID="radTestCombo" runat="server" EnableLoadOnDemand="true" EnableItemCaching="true" WebServiceSettings-UseHttpGet="true" OnClientLoad="GetServers" Label="Servers"></telerik:RadComboBox>function GetServers(sender, eventArgs) { combo = sender; combo.trackChanges(); $.ajax({ dataType: 'json', type: "GET", success: function (data) { alert('success'); $.each(data, function (i, val) { var comboItem = new Telerik.Web.UI.RadComboBoxItem(); alert(comboItem); comboItem.set_text(val.toString()); combo.get_items().add(comboItem); }); } }); combo.commitChanges(); alert(combo.get_items().get_count()); }HTTP/1.1 200 OKContent-Length: 602Content-Type: application/json; charset=utf-8Date: Thu, 12 Jul 2012 15:34:46 GMT["John","Smith","Charlie","DAVID","James","Bond"]<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="WebUserControl1.ascx.cs" Inherits="TestRadWindow.WebUserControl1" %><%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %><telerik:RadScriptManager runat="server"></telerik:RadScriptManager><script type="text/javascript"> var body = document.body; var docElem = document.documentElement; var bodyScrollTop = 0; var bodyScrollLeft = 0; var docElemScrollTop = 0; var docElemScrollLeft = 0; function OnClientBeforeClose(sender, args) { bodyScrollTop = body.scrollTop; bodyScrollLeft = body.scrollLeft; docElemScrollTop = docElem.scrollTop; docElemScrollLeft = docElem.scrollLeft; } function OnClientClose() { setTimeout(function () { body.scrollTop = bodyScrollTop; body.scrollLeft = bodyScrollLeft; docElem.scrollTop = docElemScrollTop; docElem.scrollLeft = docElemScrollLeft; }, 30); } function OpenWnd() { $find("wnd").show(); }</script><telerik:RadAjaxPanel runat="server"> <telerik:RadWindowManager runat="Server" ID="RadWindowManager1" EnableViewState="false"> <Windows> <telerik:RadWindow runat="server" ID="winEdit" Width="300px" Height="450px" ReloadOnShow="true" ShowContentDuringLoad="false" Modal="True" Behaviors="Close, Move" VisibleTitlebar="true" VisibleStatusbar="false" AutoSize="True" KeepInScreenBounds="True" OnClientBeforeClose="OnClientBeforeClose" OnClientClose="OnClientClose"> <ContentTemplate> <asp:Button runat="server" ID="btnSave" Text="button" /> </ContentTemplate> </telerik:RadWindow> </Windows> </telerik:RadWindowManager> <telerik:RadGrid runat="server" ID="grdTest" AutoGenerateColumns="False" EnableLinqExpressions="False" OnNeedDataSource="grdTest_NeedDataSource" Width="200px" CellSpacing="0" GridLines="None"> <MasterTableView> <Columns> <telerik:GridBoundColumn runat="server" DataField="Id" /> <telerik:GridTemplateColumn> <ItemTemplate> <asp:LinkButton runat="server" ID="lnkEdit" OnClick="lnkEdit_Click" Text="Edit" /> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView> </telerik:RadGrid></telerik:RadAjaxPanel>protected void Page_Load(object sender, EventArgs e) { } protected void grdTest_NeedDataSource(object sender, GridNeedDataSourceEventArgs e) { List<TestBind> binding = new List<TestBind>(); for(int i=0;i<=500; i++) { TestBind t = new TestBind(); t.Id = i; binding.Add(t); } grdTest.DataSource = binding; } protected void lnkEdit_Click(object sender, EventArgs e) { string script = "function f(){var win=$find(\"" + winEdit.ClientID + "\"); " + " win.show(); Sys.Application.remove_load(f);}Sys.Application.add_load(f);"; winEdit.VisibleOnPageLoad = true; ScriptManager.RegisterStartupScript(Page, Page.GetType(), "key", script, true); } class TestBind { public int Id { get; set; } } }<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="TestRadWindow.WebForm1" %><%@ Register src="WebUserControl1.ascx" tagname="WebUserControl1" tagprefix="uc1" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <uc1:WebUserControl1 ID="WebUserControl11" runat="server" /> </div> </form></body></html>