Hello Forum,
I haven't seen this on the forums much so I am guessing this is a rare occurrence. We have a database with over 100,000 records and have the property set to "StartWith". When typing the letter "a" there is a 5-6 second delay before the dropdown appears and is populated. We are setting the datasource with a datatable containing only two fields (Description, ID). Our SectionList property is a datatable that when it's not populated will send a query call to SQL Server obtaining the data and then returning the datatable. The process of returning the datatable is fairly fast but the overall process is rather slow. I was wondering what suggestions you all may have.
Thanks
Here is the control itself
<telerik:RadSearchBox ID="cboSection"
runat="server"
Width="300"
Height="400"
Skin="Bootstrap"
DataTextField="Description"
DataValueField="ID"
MaxResultCount="10"
DropDownSettings-Width="400"
LabelWidth="100%"
OnClientLoad="cboSection_OnClientLoad"
OnSearch="cboSection_Search"
Filter="StartsWith"> >
</telerik:RadSearchBox>
Server Side:
protected void Page_Load(object sender, EventArgs e)
{
try
{
cboSection.DataSource = Settings.Section.SectionList;
}
catch (Exception ex)
{
}
}
I have the RadSearchBox connected to a datasource through a web service with autocomplete functionality enabled.
After the user selects an item from the Searchbox drop down list, is there a way to have the OnClientSearch event fire only when the user clicks the RadSearchBox search button and not when the user selects an item from the drop down list or Enter is pressed?
Thanks in advance.
I have a series of ASPX files which are use RadGrid. One of the ASCX's contains this code:
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<AjaxSettings>
I have two web sites running identical code (one test, one production). I part of the "Security advisory" received last month, I downloaded the newer version of the Telerik controls and updated the project, and pushed to Test. No other changes have been made to the code base, just the DLL version for the new controls (2017.6.621.45). Production is still on 2017.1.228.45.
When using this ASPX file with DLL version 2017.2.621.45, I am getting an error "Unknown control type Telerik.Web.UI.RadAjaxManagerProxy" in my try/catch exception block for that page. If I change the project back to 2017.1.228.45 and push to test, it runs fine.
Not sure what has changed to cause this behaviour. Any suggestions on how to work around/correct?
I have very simple RadGrid that is being loaded from database
<telerik:RadGrid ID="RadGrid1" runat="server" Skin="MetroTouch" OnPreRender="RadGrid1_PreRender" OnItemDataBound="RadGrid1_ItemDataBound" ></telerik:RadGrid>
This populates my tooltip:
protected void RadGrid1_PreRender(object sender, EventArgs e)
{
foreach (GridDataItem dataItem in radgrid2.MasterTableView.Items)
{
dataItem["Offset_Rank"].ToolTip = dataItem["OffsetToolTip"].Text;
}
}
My problem is, once I change my lookup parameters and reload the radGrid my tool tip becomes null, what am I missing?
Any help would be helpful.
Thanks
Hello,
I have a RadPanelBar with 4 items in it. They all are expanded at first and user can expand/collapse them at will with click on the title or the arrow. The contents are a bit long so a scrollbar appears on the body when there are items expanded.
This is my problem,
When a scrollbar is there, I cannot click and expand or collapse a panel right away. Clicking once is changing the scroll position, and clicking twice does the job. When all panels are collapsed (so there are no scrollbar) I can expand any of them with a single click.
What may be the problem?
Thanks,
Sedat.
I have a problem when inserting a new record into a TreeList. I am using advanced OnNeedDataSource binding and manually inserting the record into our DB during the InsertCommand. After the insert command completes I get the following error:
"Property accessor '[PK and DataKeyName]' on object '[Object]' threw the following exception:'Object does not match target type.'"
I can't find any helpful documentation on this exception, is there any help that you may be able to give on this matter?
Hello Telerik Community !
I'm trying to find a Telerik grid with paging in which I could filter, sort and select all items.
Is that possible ?
Thank you for any help.
http://demos.telerik.com/aspnet-ajax/grid/examples/overview/defaultcs.aspx
With this demo I could not select all items for example.
When I use "splitter.ajaxRequest" for a pane, it works in other browsers, but IE always uses its cache rather getting new data. If I clean IE's cache before I trigger the ajax request, then it works for IE.
As I searched online, there're two ways to fix it, one is to change the request type from GET to POST, the other is to disable cache. Both can be done easily with jQuery, but I wonder whether the "ajaxRequest" function takes arguments such as:
{ type: 'POST' } or { cache: false } ?
It's also fine if there're other ways to fix this issue. Thank you!