Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
115 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
100 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
93 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
176 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
411 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
74 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
168 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
1.0K+ 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
542 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
3 answers
124 views
I am having trouble where the calendar is taking a long time when AutoPostback is enabled, the spinning wheel stays up there for a long time on a live server, but when running it locally grabbing the information from the same database (over a VPN mind you) is almost instant. I turned Autopostback off which seemed to solve the problem, until we realised that the forward and back navigation for the calendar is no longer working.

Do you have any recommendations for this?
Maria Ilieva
Telerik team
 answered on 19 Jun 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?