Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
176 views

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

Maria Ilieva
Telerik team
 answered on 22 Jun 2015
2 answers
109 views
I am using GridTemplateColumn (RadGrid) with edit cell
functionality. That is working fine in IE 9 and above versions. With IE 8 when
I click on any cell to edit it I am getting error in getUniqueNameByCellIndex
function on the code mentioned below –

e.CellIndex-f.Cellindex

e & f are undefined.


Can you please help me out to fix this issue?

 

 
Shilpa
Top achievements
Rank 1
 answered on 22 Jun 2015
1 answer
96 views

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.

Nencho
Telerik team
 answered on 22 Jun 2015
2 answers
86 views
I am using telerik image editor. I want to set default pan(right upper corner of image) on page load.
I have attached one image. Please find attachment: img.png
I want pan only highlighted in yellow on page load and it should not affect zoom in and zoom out functionality. 

So please let me know the any solution.
Ignatiuz
Top achievements
Rank 1
 answered on 22 Jun 2015
3 answers
171 views

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

Konstantin Dikov
Telerik team
 answered on 22 Jun 2015
2 answers
406 views

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);
                
            }

Praveen kumar
Top achievements
Rank 1
 answered on 19 Jun 2015
4 answers
71 views

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?

 

Khushboo
Top achievements
Rank 1
 answered on 19 Jun 2015
1 answer
160 views

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

 

 

Ivan Danchev
Telerik team
 answered on 19 Jun 2015
10 answers
982 views
Hello telerik team.

I have a problem about RadDatePicker control.

When i input the date RadDatePicker by keyboard and press enter
get_selectedDate() is always null.

however when i input the date RadDatePicker by keyboard and moving focus to other control
and focus back to RadDatePicker and press enter,
get_selectedDate() has value.

due to this problem I'm confusing now.
Is your intended logic?
Eyup
Telerik team
 answered on 19 Jun 2015
3 answers
532 views

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

Vessy
Telerik team
 answered on 19 Jun 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?