Completed
Last Updated: 11 Oct 2021 14:28 by ADMIN
Release LIB 2021.3.1018 (18 Oct 2021)

When using LineHighlightTagger a NullReferenceException is thrown. To workaround this exception, you can add a custom TextFormatDefinition object to the TextFormatDefinitions collection of the RadSyntaxEditor.

this.syntaxEditor.TextFormatDefinitions.AddLast(LineHighlightTagger.LineHighlightFormatDefinition, new TextFormatDefinition(new Telerik.Windows.Controls.SyntaxEditor.UI.Pen(new SolidColorBrush(Colors.Gray), new Thickness(1))));

Completed
Last Updated: 31 May 2021 08:01 by ADMIN
Release LIB 2020.2.406 (04/06/2020)
A message could be shown when using the Find mechanism, and you reach the end of the file or the starting point of the search. 
Declined
Last Updated: 17 May 2021 12:42 by ADMIN
Created by: Robby
Comments: 1
Category: SyntaxEditor
Type: Feature Request
0

Default keystroke in other editors to activate text replacement is: ctrl+H

Would be nive to enable this in the syntax editor.

 

Completed
Last Updated: 05 May 2021 10:03 by Petar
Release LIB 2021.1.301 (1/03/2021)
In some cases the string values in the XML attributes are not colored with the expected color, but default to black.
 
This was reproduced when there is only single quotation mark on visible on the line. And also if the count of the visible quotation marks on the line is an odd number (not always reproducible). 

Unplanned
Last Updated: 20 Apr 2021 11:12 by ADMIN
Created by: Robby
Comments: 1
Category: SyntaxEditor
Type: Feature Request
2

We want to have the option to replace texts only in a selected part of the document. 

Use Notepad++ as a reference to check this feature.

Completed
Last Updated: 22 Mar 2021 07:24 by ADMIN
Release LIB 2021.1.322

Shift + Alt + Down Selection then typing multiple characters results in all of them being typed in all selected lines.

Shift + Alt _ Down Selection then typing multiple characters results in only the first one being typed in all lines, then selection is lost and next chars are inserted in the last selected line only.

Completed
Last Updated: 01 Mar 2021 05:56 by ADMIN
Release LIB 2021.1.301 (1/03/2021)
The highlighting of tags becomes invalid when scrolling horizontally.
Completed
Last Updated: 26 Feb 2021 08:50 by ADMIN
Release LIB 2021.1.301 (1/03/2021)

//using System;

//usign System.Windows.Controls;

Two consecutive lines with commented using sections result in ArgumentOutOfRangeException in SyntaxEditor with CSharpFoldingTagger.

Completed
Last Updated: 18 Feb 2021 14:43 by ADMIN
Release R1 2021 SP1

/* and */ words are start /end words for multiline comments in C#/SQL/VB 

They should be outside strings when they form a comment block.

Completed
Last Updated: 27 Jan 2021 08:26 by ADMIN
Release LIB 2021.1.201

Character data sections are not recognized and colored by the XmlTagger in SyntaxEditor.

Visual Studio:

SyntaxEditor:

Also parsing such elements is wrong:

Expanded OK:

Collapsed BUG (Node is closed but it shouldnt):

issue 2 - single line CDATA does not need folding button

Completed
Last Updated: 08 Dec 2020 14:43 by ADMIN
Release LIB 2020.3.1214
Created by: Petar
Comments: 0
Category: SyntaxEditor
Type: Feature Request
10

Adding breakpoints (markers) to particular lines in code should be possible.

Should be doable via UI or in code. Collection of all breakpoints should be accessible in code too.

Completed
Last Updated: 04 Nov 2020 16:03 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
Created by: Andrea.Gasparini
Comments: 0
Category: SyntaxEditor
Type: Feature Request
3
Expose a property to control the width of the search panel as the buttons may get clipped if their text is too long.
Completed
Last Updated: 14 Oct 2020 11:05 by ADMIN
Release R3 2020 SP

After putting a folding region out of the viewport by scrolling and then bringing it back, the folding region is not drawn correctly when typing new lines into it.

Completed
Last Updated: 23 Sep 2020 13:25 by ADMIN
Release LIB 2020.3.928

When the variation is changed in the VisualStudio2013 theme, the Foreground is not updated. 

As a workaround, you can reset the Template of the control:

var template = this.syntaxEditor.Template;
this.syntaxEditor.Template = null;
this.syntaxEditor.Template = template;

Completed
Last Updated: 23 Sep 2020 12:55 by ADMIN
Release LIB 2020.3.928

In some scenarios, an ArgumentException is thrown when a folding region with selected text is collapsed. An example can be seen below:

Completed
Last Updated: 14 Jul 2020 05:54 by ADMIN
Release LIB 2020.2.720 (7/20/2020)
Created by: Dinko
Comments: 0
Category: SyntaxEditor
Type: Bug Report
2
The GotoLine method is not implemented
Unplanned
Last Updated: 10 Jul 2020 10:03 by ADMIN
Foldings are incorrect when there is a missing open or close tag.
Completed
Last Updated: 01 Jul 2020 10:19 by ADMIN
Release LIB 2020.1.302 (02/03/2020)
Introduce a property to control whether the matching of the start and end folding tags is case sensitive or not.
Unplanned
Last Updated: 30 Jun 2020 11:52 by ADMIN
Currently, if you load a big .xml file with big number of tags, the XmlFoldingTagger takes a lot of time to execute its logic. Improve the performance in those situations.
Completed
Last Updated: 22 May 2020 12:42 by ADMIN

For example:

some text // some comment

some text 2 // some comment 2

Specified argument was out of the range of valid values.
Parameter name: span

 

StackTrace:

at Telerik.Windows.SyntaxEditor.Core.Text.DataStructures.ConcatenationRopeNode.GetText(Span span) in C:\WPF_Scrum\Current\Controls\SyntaxEditor\SyntaxEditor.Core\Text\DataStructures\ConcatenationRopeNode.cs:line 140
   at Telerik.Windows.SyntaxEditor.Core.Text.TextSnapshot.GetText(Span span) in C:\WPF_Scrum\Current\Controls\SyntaxEditor\SyntaxEditor.Core\Text\TextSnapshot.cs:line 118
   at Telerik.Windows.Controls.SyntaxEditor.Taggers.CSharpFoldingTagger.GetFoldingRegionTitle(String inputValue, Span span, String startText) in C:\WPF_Scrum\Current\Controls\SyntaxEditor\SyntaxEditor\Taggers\Folding\CSharpFoldingTagger.cs:line 202