Hi Adam,
Ok so my first post wasn't very detailed! I have now narrowed down the problem and also discovered another issue. The code is as follows:
-
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
-
Dim assetsPath As String = Me.MapPath("~/assets")
-
-
With htmlContent
-
.SetSecurityFilesGalleryPath(assetsPath)
-
-
-
.SetSecurityImageGalleryPath(assetsPath)
-
-
If Not .ToolControls("Codes") Is Nothing Then
-
Dim richItem As CuteEditor.RichListItem
-
-
With CType(.ToolControls("Codes").Control, CuteEditor.RichDropDownList)
-
richItem = .Items(0)
-
.Items.Clear()
-
.Items.Add(richItem)
-
-
.Items.Add("Test 1", "Test 1")
-
.Items.Add("Test 2", "Test 2")
-
.Items.Add("Test 3", "Test 3")
-
End With
-
End If
-
-
-
.EditorWysiwygModeCss = Me.ResolveUrl(assetsPath & "/editor.css")
-
End With
-
End Sub
If you just add a CuteEditor to the page and insert the above into the code-behind, you'll see that the Test 1, 2 & 3 items do not appear in the Codes drop down list. If you then comment out line 25 it works as expected.
Also it seems like line 8 isn't working anymore, although it works for FilesGallery and FlashGallery. This was working in previous versions.
Hope that helps, I have a testbed application that I can send to you if you are unable to replicate this issues detailed above.
In the mean time, can I download 6.2 from somewhere until 6.3 is fixed?
Regards,
Richard.