I have an application where I have an Ajax tab control (which is created at design time-- no it's not a telerik tab control) and has 35+ seperate tabs currently which are populated with a couple text boxes and a couple dropdown lists for inputting of new data. Once I added the Prometheus Editor (also at design time) I started encountering an error.
The error is: "Stop running this script? A script on this page is causing Internet Explorer to run slowly. If it continues to run, your computer may become unresponsive." After I click "No" it loads fine, albeit the whole thing runs rather slow for an Ajax app....
Obviously this issue occurs only once I added the Editor control, and yes, there are 35 of them loaded at once. My problem is that there could be up to 50-75 alltogether (eventually) loaded at once. If it can't even load 35 without an error message, I cringe to think about when more are added... Any ideas on what could be the problem?
Perhaps disable some features of the Editor or something?
Here's how I'm adding the Editor...
The error is: "Stop running this script? A script on this page is causing Internet Explorer to run slowly. If it continues to run, your computer may become unresponsive." After I click "No" it loads fine, albeit the whole thing runs rather slow for an Ajax app....
Obviously this issue occurs only once I added the Editor control, and yes, there are 35 of them loaded at once. My problem is that there could be up to 50-75 alltogether (eventually) loaded at once. If it can't even load 35 without an error message, I cringe to think about when more are added... Any ideas on what could be the problem?
Perhaps disable some features of the Editor or something?
Here's how I'm adding the Editor...
Dim
tbEOSDet As RadEditor = New RadEditor
tbEOSDet.ID = "EOSDet" & i + 1
tabcontent.controls.Add(tbEOSDet)
Thanks in advance for any help.