I have a RadEditior embedded in RadGrid. I've been getting frequent complaints from users that the cursor jumps around when they are trying to edit previously entered text. I've been able to recreate part of the problem by pressing the spacebar twice. The first space is inserted normally, the second space is inserted as an and then the cursor jumps to the end of the current line. Once this happens nothing can be typed without the insertion point jumping to the end. Switching to html mode and back will temporarily correct the problem. Strange behavior will also occur when the insert key is pressed and the control goes into overwrite mode.
Here is the grid with its RadEditor. This is all located in a RadWindow.
<
telerik:RadGrid
ID
=
"rgJudicialNotes"
runat
=
"server"
AutoGenerateColumns
=
"False"
AllowSorting
=
"True"
CellSpacing
=
"0"
GridLines
=
"None"
Height
=
"455px"
>
<
MasterTableView
CommandItemDisplay
=
"Top"
CommandItemSettings-AddNewRecordText
=
"Add Note"
CommandItemSettings-ShowRefreshButton
=
"true"
TableLayout
=
"Fixed"
EditMode
=
"EditForms"
DataKeyNames
=
"note_nr,note"
>
<
EditFormSettings
EditFormType
=
"Template"
>
<
FormTemplate
>
<
div
style
=
"position: relative; height: 215px; width: 800px;"
>
<
telerik:RadEditor
ID
=
"reNote"
Runat
=
"server"
ResolvedRenderMode
=
"Classic"
Width
=
"795px"
Height
=
"165px"
NewLineMode
=
"Br"
>
<
tools
>
<
telerik:EditorToolGroup
Tag
=
"MainToolbar"
>
<
telerik:EditorSplitButton
Name
=
"Undo"
/>
<
telerik:EditorSplitButton
Name
=
"Redo"
/>
<
telerik:EditorTool
Name
=
"Cut"
/>
<
telerik:EditorTool
Name
=
"Copy"
/>
<
telerik:EditorTool
Name
=
"Paste"
ShortCut
=
"CTRL+V / CMD+V"
/>
</
telerik:EditorToolGroup
>
<
telerik:EditorToolGroup
Tag
=
"Formatting"
>
<
telerik:EditorTool
Name
=
"Bold"
/>
<
telerik:EditorTool
Name
=
"Italic"
/>
<
telerik:EditorTool
Name
=
"Underline"
/>
<
telerik:EditorTool
Name
=
"StrikeThrough"
/>
<
telerik:EditorSplitButton
Name
=
"BackColor"
/>
</
telerik:EditorToolGroup
>
</
tools
>
<
Content
>
</
Content
>
</
telerik:RadEditor
>
<
asp:ImageButton
ID
=
"ibSave"
runat
=
"server"
ImageUrl
=
"~/Images/Save.png"
CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>' style="position: absolute; left: 10px; top: 180px;" />
<
asp:ImageButton
ID
=
"ibCancel"
runat
=
"server"
ImageUrl
=
"~/Images/Cancel.png"
CommandName
=
"Cancel"
style
=
"position: absolute; left: 70px; top: 180px;"
/>
</
div
>
</
FormTemplate
>
</
EditFormSettings
>
<
SortExpressions
>
<
telerik:GridSortExpression
FieldName
=
"createdate"
SortOrder
=
"Descending"
/>
</
SortExpressions
>
<
Columns
>
<
telerik:GridEditCommandColumn
ButtonType
=
"ImageButton"
HeaderStyle-Width
=
"30px"
ItemStyle-HorizontalAlign
=
"Center"
EditImageUrl
=
"~/Images/Edit.png"
UniqueName
=
"gecEdit"
/>
<
telerik:GridBoundColumn
DataField
=
"createdate"
HeaderText
=
"Entry Date"
ReadOnly
=
"true"
DataFormatString
=
"{0:MM/dd/yyyy hh:mm}"
HeaderStyle-Width
=
"110px"
UniqueName
=
"gbc_create_date"
/>
<
telerik:GridBoundColumn
DataField
=
"note"
HeaderText
=
"Note"
HeaderStyle-HorizontalAlign
=
"Center"
ItemStyle-HorizontalAlign
=
"Left"
HeaderStyle-Width
=
"500px"
MaxLength
=
"4096"
UniqueName
=
"gbc_note"
/>
<
telerik:GridBoundColumn
DataField
=
"empl_last_nme"
HeaderText
=
"Judge"
ReadOnly
=
"true"
HeaderStyle-Width
=
"80px"
UniqueName
=
"gbc_empl_last_nme"
/>
</
Columns
>
</
MasterTableView
>
<
ClientSettings
><
Scrolling
AllowScroll
=
"true"
/></
ClientSettings
>
</
telerik:RadGrid
>
We are using IE9, Windows 7, and version 2015.1.401.40 of the Telerik controls.
Any suggestions on how to correct this behavior?
Thanks,
John