We have a record maintenance page on a web app that we are developing that sits for an age before submitting the form once the 'Save' button has been pressed BUT that only happens under a very specific set of circumstances. We have deployed the site to a couple of our test servers (both of which are running Windows Server 2003 Web Edition SP2 & IIS6), when we access the site on Server A through Chrome (43.0) the submission is very slow but if we use FireFox then it acts as expected and it always acts as expected, irrespective of the browser, on Server B. We have a number of record maintenance forms and this is the only which that exhibits this behaviour, although it is the most complicated form we have.
I can't post the actual code, but we have a RadAjaxManager covering all fields on the form, which we use for field change checking and field validation, numerous control types including four RadAsyncUpload controls and a RadNotification. If I remove the RadAjaxManager, obviously we lose all the AJAX functionality but the Save works as expected.
Unfortunately the Server A is remote and it is not possible to debug on there to try and determine and watch point it if stalling.
Any help/pointers would be appreciated.
Many thanks
I am doing something wrong by Telerik application. When I click on a node in my TreeView it takes 24 seconds for data to appear on the screen. I have profiled the whole process and cannot see when the delay is occurring. This is my first REALLY big application and I need help. I have eliminated the database as the cause of my problems.
Please come up with places I can look and diangostics I can use.
Whenever i add new record of RadGrid Batch Edit mode, I'll have a new row with <tr> ID like: RadGrid1_ctl00__-1,RadGrid1_ctl00__-2,RadGrid1_ctl00__-3....
So how do I get that ID of my current selected row ( contain my pointer ) by script code.
I have tried to use get_itemIndex() but its not working.
Tks
Hiep
Telerik RadAsyncUpload control is used upload files to file system or shared folder. if file already exist we need to append counter value to the end of the file.So i wrote logic to added integer value to the end of file name. This code works with single file but if upload multiples, this code fails .I want to rename multiple files if already exist in file share.
protected void RadAsyncUpload1_FileUploaded(object sender, FileUploadedEventArgs e)
{
List<ListItem> files = new List<ListItem>();
int counter = 1;
foreach (UploadedFile file in AsyncUpload1.UploadedFiles)
{
string targetFolder = AsyncUpload1.TargetFolder;
string targetFileName = System.IO.Path.Combine(targetFolder,
file.GetNameWithoutExtension() + counter.ToString() + file.GetExtension());
while (System.IO.File.Exists(targetFileName))
{
counter++;
targetFileName = System.IO.Path.Combine(targetFolder,
file.GetNameWithoutExtension() + counter.ToString() + file.GetExtension());
}
file.SaveAs(targetFileName);
}
Applying CSS Class/Headings/Fonts/size to selected content is not working properly as it lost the cursor on selected content in IE11.
Steps to reproduce:
1. Open RAD Editor.
2. Select any text and try to apply CSS class, fonts, size, etc. that will actually gets applied to first line of the Editor instead of that particular selected text.
This issue is with Terelik version - 2012.2.607.35.
Can you please help us in solving these issues?
I am creating a RadComboBox from code and setting an AddHandler as follows:
Create new Panel
dim kcmbo as RadComboBox
kcmbo = new RadComboBox
... set properties to kcmbo
AddHandler kcmbo .SelectedIndexChanged, AddressOf ComboChanged
Add kcmbo to Panel
Add Panel to page
_______________________
Private Sub ComboChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
do stuff....
End Sub
___________________________
Event does not fire when selected index is changed
Hello,
I am working with 2 of telerik web controls RadTreeList and RadImageEditor, the thing here is that I'm havving some trouble when using both.
First I bind my radtreelist within the database and here is when the image editor starts working, when I select a row from the radtreelist i get the ID and some information needed in order to bind information, this information includes an Image. The first time I select an Item from the radtreelist the imageEditor works fine but when I select another Item the radImageEditor does not reload the image and the displayed image is the one of the first selected item.
Can somebody help me on this please?
If more information is needed please let me know it