<telerik:GridBoundColumn DataField="FullName" UniqueName="FullNameColumn" HeaderText="Имя" ReadOnly="true" CurrentFilterFunction="Contains" AllowFiltering="true" ShowFilterIcon="false" FilterControlWidth="200px"> <FilterTemplate> <telerik:RadTextBox runat="server" AutoPostBack="true" ID="NameRadTextBox" ClientIDMode="Static" EmptyMessage="Введите ФИО" ClientEvents-OnKeyPress="btnClick"/> <telerik:RadCodeBlock ID="rcb1" runat="server"> <script type="text/javascript"> function btnClick(sender, e) { if (e.get_keyCode() == 13) { $find("<%= RadAjaxManager.ClientID %>").ajaxRequest(); } } </script> </telerik:RadCodeBlock> </FilterTemplate> </telerik:GridBoundColumn><telerik:RadAjaxManager ID="RadAjaxManager" runat="server" OnAjaxRequest="RadAjaxManager_AjaxRequest">.....protected void RadAjaxManager_AjaxRequest(object sender, AjaxRequestEventArgs e) { var results = new List<CompanyUser>(); var searchStr = e.Argument; var users = _userProvider.SearchByName(searchStr); UsersList.DataSource = users; UsersList.DataBind(); }But nothing happens. Grid is still empty. I checked recieved data from database and it's ok. What is missed or what i'm doing wrong?
public static void updatePanel(RadAjaxPanel sender, RadAjaxPanel target) { sender.ResponseScripts.Add(String.Format("$find('{0}').ajaxRequest();", target.ClientID)); }
|
|
|
Hi,
I have created lots of custom web part using Telerik controls in MOSS 2007 with telerik.web.UI.dll version 2009.3.1208.20 and system.web.extension dll version 1.0.61025.0.My company has purchased Telerik license for dll version 2009.3.1208.20.
My problem is that one of our clients wants to deploy Bamboo web parts and our custom web parts in same site. The bamboo web parts are using following version of Telerik dll.
2008.3.1125.20
2010.1.415.35
2009.3.1103.20
2009.1.402.20
3.5.0.0 (system.web.extension)
If our client will deploy bamboo web parts in the same site where we deployed our custom web parts with Telerik dll version 2009.3.1208.20, so is there will be any impact on our web parts? If yes, Please provide any solution for that ASAP because it’s very urgent for our client.
waiting for your reply at earliest
Thanks,
Divya