This is a migrated thread and some comments may be shown as answers.

radeditor not working in google chrome

3 Answers 102 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Phani
Top achievements
Rank 1
Phani asked on 23 Apr 2014, 05:29 PM
I have a rad editor. The telerik on that is : 2012.3.1016.35. I know its old. I cannot update it to newer version for various reasons. This is old site and changing the telerik will affect  a lot of things. It is running in .NET 2.0. 
My rad editor is disabled in CHROME. I cannot type into it. I can use it in other browsers just fine. What are my options WITHOUT upgrading to new telerik?

3 Answers, 1 is accepted

Sort by
0
Phani
Top achievements
Rank 1
answered on 28 Apr 2014, 09:13 PM
Question continuation: It seems there is a console error only on chrome.

see image to see error

Let me explain my code:
I have a asp.net button. "New". Clicking that opens a radwindow. It contains several controls. Among them is rad editor.
I also have an asp.net button "Edit". Clicking that opens a radwindow. This also has a radeditor. If user had put in something then the "notes" is brought from DB and populated into this radeditor. Surprisingly it shows the data and i can move and edit here. Only when I click new, it is NOT enabled.
I also have save button. In that i save the text in this editor and also save other values.



0
Phani
Top achievements
Rank 1
answered on 28 Apr 2014, 09:16 PM
Continuation to question:
In save i have this line

Dim strReminderPageLink As String = "SMReminder.aspx"   & "&SID=" & scNew.SID & "&StartTime=" & strStartTime & "&EndTime=" & strEndTime
Javascript.RegisterStartupScript(Me, "NewSCSave", "window.open('" & strReminderPageLink & "');setTimeout(""$find('" & rwSC.ClientID & "').close();"", 500);", True)

This does not get hit until  i hit save. But I am not hitting save because I have not/cannot type anything into editor to save first. So this does not get hit at all when i hit new button. I gave this code because this is the only place where I have window.open and setTimeOut. Hope this helps you answer my question
0
Phani
Top achievements
Rank 1
answered on 29 Apr 2014, 03:56 PM
I got the answer.Its bizarre. I have a call like this on my page to open a rad window

rwSC.VisibleOnPageLoad = True. This was not working correct on chrome. Sometime it would open fast and sometimes not. Hence i went back to using this instead of using the above line to open a radwindow.

Javascript.RegisterStartupScript(Me, "NewSC", "setTimeout(""$find('" & rwSC.ClientID & "').show();"", 500);", True)
Tags
General Discussions
Asked by
Phani
Top achievements
Rank 1
Answers by
Phani
Top achievements
Rank 1
Share this question
or