Completed
Last Updated: 08 Sep 2022 15:41 by ADMIN
Release R3 2022
Created by: Petar
Comments: 1
Category: SyntaxEditor
Type: Feature Request
21
Add ability to disable horizontal scrollbar and enable word wrapping - fixed width of editor and if the word cannot fit - it is moved to next line.
Unplanned
Last Updated: 22 Nov 2023 14:33 by Richard
Created by: Petar
Comments: 4
Category: SyntaxEditor
Type: Feature Request
11
Add dependency property for showing/hiding the line numbers on the left of the source code.
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.

Unplanned
Last Updated: 24 Sep 2019 11:27 by ADMIN
Created by: Petar
Comments: 0
Category: SyntaxEditor
Type: Feature Request
9
Add API for inserting code snippets like in Visual Studio.
Unplanned
Last Updated: 28 Jan 2020 12:27 by ADMIN
We could create intellisense similar to Visual Studio.
Unplanned
Last Updated: 07 Oct 2019 11:37 by ADMIN
Created by: Olivier
Comments: 1
Category: SyntaxEditor
Type: Feature Request
6

Hello,

We would like to use SyntaxEditor by providing our own programming language definition. It would be great to have the ability to feed SyntaxEditor with a language definition file. This file could be use an EBNF-like format to provide syntax coloration.

Thanks & regards,

Unplanned
Last Updated: 04 Nov 2019 10:32 by ADMIN
Created by: Mischa Müller
Comments: 1
Category: SyntaxEditor
Type: Feature Request
5
Python is one of the most important scripting languages. It would be nice if this language was supported by default.
Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Created by: Felix
Comments: 0
Category: SyntaxEditor
Type: Feature Request
4
Currently the Caret of the SyntaxEditor does not behave like Caret in MS TextBox/ RichTextBox when IME is opened - IME opens on the bottom right part of the screen instead of below the caret. Also some input issues when selection is done in the IME should be addressed for a full support of this feature.
Completed
Last Updated: 27 Apr 2023 07:51 by ADMIN
Release R2 2023

Good morning,

can You implement in one of the next releases the regex and case sensitive search? I provided you the Visual Studio 2019 search screenshot

Completed
Last Updated: 27 Nov 2019 14:30 by ADMIN
Release R1 2020
Add separate folding tagger class for creating folding (collapsible) regions in XML, XAML, HTML code files.
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: 27 Feb 2020 12:49 by ADMIN
Release LIB 2020.1.302
Created by: Olivier
Comments: 1
Category: SyntaxEditor
Type: Bug Report
3

Hello,

When we resize the syntaxEditor control, the folding buttons moved. You can reproduce this isssue in your demos.

 

  1. Reduce the contents of the sample
  2. Increase the size of sample window and see the buttons are not besides the line

 

Best regards,

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.
Unplanned
Last Updated: 22 Nov 2019 08:49 by ADMIN
Add support for using right-to-left characters. This includes.
    - typing from right to left
    - proper selection, navigation between RTL chars
    - proper insert, delete, cut, copy, paste operations (modifications) sign
Unplanned
Last Updated: 06 May 2022 10:57 by Stenly
Created by: Stenly
Comments: 0
Category: SyntaxEditor
Type: Feature Request
2
Currently, the RadSyntaxEditor control does not have an out-of-the-box printing functionality.
Unplanned
Last Updated: 13 Feb 2020 14:00 by ADMIN
Created by: Troy
Comments: 1
Category: SyntaxEditor
Type: Feature Request
2

I do have some feedback on this component. I love it, but of course there are some areas where improvement can be made. For instance, in the screenshot below, I have highlighted some words where improvement can be made.

  1. ‘1,2,3,5’ – Literals in SSMS are Red
  2. ‘ER – 100% OF MEDICARE’ – OF is highlighted in Blue. It is contained in a literal and shouldn’t be highlighted
  3. ISNULL – Is a function and should be highlighted in Blue
---- - It looks like that the tagger is only looking for 2 – only. If there are more than 2 in sequence, it doesn’t identify it as a comment and should
Unplanned
Last Updated: 18 Nov 2021 10:32 by ADMIN

When using XML Tagger, XML Folding tagger with XML text document, the folding tagger freezes the UI while typing.
Generally in Visual Studio, the XML Folding tagger is processed in background while in SyntaxEditor this is done on the UI thread.
Several optimization options might be applied:

    - process xml folding in background

    - process folding similar to process search while typing - a period of inactivity time is needed to invalidate the search / folding

   - caching - if the edit does not change the folding configuration, no processing and redrawing of folding is required

  - some parts for extracting tooltip content and folded content should be optimized

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: 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
Completed
Last Updated: 13 Jul 2023 08:43 by ADMIN
Release R2 2023 SP1
Created by: Martin Ivanov
Comments: 0
Category: SyntaxEditor
Type: Feature Request
1

Localize the tooltips for the match case button, the match word button and the use regular expression button.

Currently, the tooltips of the buttons are using hardcoded strings in English.

To translate the tooltips, you can get the corresponding buttons on load of the syntax editor control and replace their tooltips manually.

private void syntaxEditor_Loaded(object sender, RoutedEventArgs e)
{
	var buttons = this.syntaxEditor.ChildrenOfType<RadToggleButton>();
	var matchCaseButton = buttons.FirstOrDefault(x => x.Name == "PART_MatchCaseButton");
	var matchWordButton = buttons.FirstOrDefault(x => x.Name == "PART_MatchWordButton");
	var useRegularExpressionsButton = buttons.FirstOrDefault(x => x.Name == "PART_UseRegularExpressionsButton");

	matchCaseButton.ToolTip = CreateToolTip("SyntaxEditor_MatchCase"); // these are custom localization resource keys that should be manually defined by the developer that uses this solution
	matchWordButton.ToolTip = CreateToolTip("SyntaxEditor_MatchWord");
	useRegularExpressionsButton.ToolTip = CreateToolTip("SyntaxEditor_UseRegularExpressions");
}

private static ToolTip CreateToolTip(string resourceKey)
{
	var toolTip = new ToolTip();
	toolTip.Content = LocalizationManager.Manager.GetStringOverride(resourceKey);
	return toolTip;
}

1 2 3