| <asp:ScriptManager ID="ScriptManager" runat="server"></asp:ScriptManager> |
| <telerik:RadComboBox ID="cmbo" runat="server" AutoPostBack="true" EnableLoadOnDemand="true"></telerik:RadComboBox> |
| Protected Sub cmbo_ItemsRequested(ByVal o As Object, ByVal e As Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs) Handles cmbo.ItemsRequested |
| cmbo.Items.Clear() |
| For i As Integer = 1 To 100 |
| cmbo.Items.Add(New RadComboBoxItem(i & "-Item", i)) |
| Next |
| cmbo.DataBind() |
| End Sub |
| Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load |
| If Not Page.IsPostBack Then |
| cmbo.Items.Add(New RadComboBoxItem("5-Item")) |
| End If |
| End Sub |
Hi,
We are using the ASP.Net AJAX RadEditor (v 2007.3.1425.35)and we are experienced two issues:
1) “ApplyClass”tool button does not work with Chrome v2.0.172.39
The “ApplyClass” tool button itworks great in IE (v6.0 and v8.0) and FireFox (v 3.0.13), but it does not work inChrome (v2.0.172.39). When you selectsome text and then click on a style in the “ApplyClass” drop down, instead of aspan tag having class="SelectedClass” being wrapped around the selectedtext, the selected text gets deleted and the following HTML is inserted at thebeginning of the editor field:
| <span><span class="SelectedClass"> </span></span> |
I downloaded atrial version of the RadEditor v 2009.2.701.35 and tested this. In this case, the ApplyClass tool button onlyworks in Chrome when it is clicked twice. Again, it works fine in IE and FireFox.
2)Extra space being inserted at the bottom of the editorwindow
I have a RadEditor with aspecified height in pixels. Duringcertain circumstances, the three tab buttons at the bottom of the control (Design,HTML, and Preview) move up and the bottom portion of the editor is filled witha blank rectangle. If I have resizingenabled and click on the resizing glyph at the lower right corner, the threetab buttons move to the bottom of the editor, and the blank rectangledisappears.
There are two circumstances inwhich I can get this to occur:
a)When I expand the editor to full-screen mode via the “ToggleScreenMode”in IE 6.0 or IE8.0, and then click it again to return to normal size, the threetab buttons move up and the bottom 25% of the editor is filled with a blankrectangle. (Chrome and FireFox work fine).This issue occurs for both the 2007.3.1425.35 and the trial 2009.2.701.35versions of the RadEditor
b)When I do a server postback and the page reloads, theissue occurs again and this time about half of the window is filled by thisblank rectangle. This happens across allthree browsers. This issue occurs for only the 2007.3.1425.35 versionsof the RadEditor
The only module I am using is theStatistics module:
| <modules> |
| <module name="RadEditorStatistics" dockingZone="Bottom" enabled="true" visible="true" /> |
| </modules> |
Thank you very much for your assistance. Please let me know if you require any more information.
Joe