I'm working on customizing advanced form of the scheduler.
I have been able to achieve the customization part using user controls (AdvancedForm, ResourceControl and MultipleValuesResourceControl).
I have two controls of single value resource control type and one control of multiple values resource control type. Find the screenshot depicting this.
My requirement involves replacing this multiple values resource control from check boxes to a multi-select combo box.
I tried replicating the current multiple values resource by adding a new user control, called it MultipleValuesDropDownResourceControl.ascx, registered it in AdvancedForm and tried making changes in the MultipleValuesDropDownResourceControl.cs file to replace with but I wasn't able to achieve this functionality. I wasn't able to even partly achieve this, hence I don't have any code to share.
Can anyone please provide some guidance on how a control type can be modified.
Links I have referred to achieve customized advanced form - http://www.telerik.com/support/code-library/customize-the-advanced-form-with-the-advanced-template-user-controls
http://www.telerik.com/videos/aspnet-ajax/advanced-aspnet-ajax-scheduler-customization (tutorial I followed)
http://docs.telerik.com/devtools/aspnet-ajax/controls/scheduler/how-to/customize-the-advanced-form-template
Hi, I have implemented RadAsyncUpload on my page. I run the project. When I select the file, the page does total refresh automatically as if it was ran for the first time. Please help!
I am using VS2017
Controls version 2014.2.724
My code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %><%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <telerik:RadScriptManager runat="server" ID="RadScriptManager1" /> <telerik:RadAsyncUpload ID="RadAsyncUploadAttachment" runat="server" MultipleFileSelection="Automatic" TabIndex="300" AllowedFileExtensions="jpg,jpeg,png,gif,bmp,pdf"> </telerik:RadAsyncUpload> </div> </form></body></html>I have two servers. I have set Telerik.AsyncUpload.TemporaryFolder in my web.config on both servers. On server # 1, the setting looks like this: "\\192.168.0.5\upload\". On server #2 (which hosts the shared folder), it looks like this: "c:\files\upload\". Both point to exactly the same folder, and both servers have write permissions. I do not have a target folder set.
This generally works, but occasionally fails. I end up with the uploaded file in "c:\files\upload" on server #1. When my process looks for the file in the shared folder on server #2, it is not there. Nowhere on server #1 is the temp file location set to that local folder - it is always set to the shared folder.
I modified the temp location on server #2 to use the same share path as server #1. This seems to be working, but I will need to watch it for a while.
So, two questions. First, was I causing my own problem by using two different strings to point to the same shared folder? And second, is there any issue with not using a target folder? I just pick up the files from the temp folder and move them where I need them. This seems to be ok, but I thought I would ask in case I am missing something.
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.