Hello,
I would like to convert select track changes inserts in to track changes delete. I have this code...
Revision rev = radRichTextBox.Document.GetCurrentRevision();But the problem is that I can only do it for the current revision (Document.GetCurrentRevision). I would like to do it for all selected revisions. Anyone out there have a solution?
Hi there,
as soon as I switch SelectionUnit to something different than "FullRow", the current cell focus is no more jumping down to the next cell when I press the enter key.
I'm replacing the plain old WPF default DataGrid in some application right now and I need to have the RadGridView (2015.1.225.45) act in the same way as the default DataGrid! I already tried to use IKeyboardCommandProvider but it does not work. I can debug into the provider code and everything seems to be arranged correctly (the commandsToExecute list), but it seems like the GridView does not know what to do with these commands...
So, how can I get the default enter key pressed behaviour only with SelectionUnit "Cell" and SelectionMode "extended"?
Cheers,
Marcel
I am converting HTML document to RTF by Telerik.Windows.Documents.Flow.FormatProviders.Rtf.RtfFormatProvider.
Conversion works fine, but When I am binding final RTF document to RadRichTextBox editor (RtfFormatProvider), It gives me following error
Style of type Paragraph can not have linked style of type Paragraph.
System.InvalidOperationException: Style of type Paragraph can not have linked style of type Paragraph. at Telerik.Windows.Documents.Model.Styles.StyleDefinition.CheckIsValidLinkedStyle(StyleDefinition linkedStyle) at Telerik.Windows.Documents.Model.Styles.StyleDefinition.set_LinkedStyle(StyleDefinition value) at Telerik.Windows.Documents.FormatProviders.Rtf.Import.RtfStylesTable.InitializeRelatedStyles() at Telerik.Windows.Documents.FormatProviders.Rtf.Import.RtfStylesTable.ReadTable(RtfGroup group, RtfImportContext context) at Telerik.Windows.Documents.FormatProviders.Rtf.Import.RtfHandlers.RtfGroupHandlers.StylesTableHandler(RtfGroup group, RtfImportContext context) at Telerik.Windows.Documents.FormatProviders.Rtf.Import.RtfDocumentImporter.DoVisitGroup(RtfGroup group) at Telerik.Windows.Documents.FormatProviders.Rtf.Import.RtfElementIteratorBase.VisitElement(RtfElement element, Boolean recursive) at Telerik.Windows.Documents.FormatProviders.Rtf.Import.RtfElementIteratorBase.VisitGroupChildren(RtfGroup group, Boolean recursive) at Telerik.Windows.Documents.FormatProviders.Rtf.Import.RtfDocumentImporter.ImportRoot(RtfGroup rtfGroup) at Telerik.Windows.Documents.FormatProviders.Rtf.Import.RtfDocumentImporter.Import(Stream input, RtfImportSettings settings) at Telerik.Windows.Documents.FormatProviders.Rtf.RtfFormatProvider.Import(Stream input) at Telerik.Windows.Documents.FormatProviders.Rtf.RtfFormatProvider.Import(String input)
For reference I am attaching sample project and html document.
We are facing lot of issue by such conversion. Sample Html document I shared is generated by Telerik Richtext box editor, but same document conversion is not working.
Hello,
Is it possible to sort/filter data only within a specified group?
For example, there are 3 groups, the first one is sorted by the first column, the second group is sorted by the second column and etc.
Hi,
Can we have RadMultiColumnComboBox restrict text input to items in the ItemsSource?
Same functionality as found in a editable RadComboBox with both IsEditable and IsReadOnly set to True.
Hello,
I'm using the RadGridView tool (WPF) and I'm having problems integrating my data sources there.
I am using LINQ to query two tables, something like this:
TableMaster = from tabM in EntitiesObject.TableMaster
select tabM;
TableDetails = from tabD in EntitiesObject.TableDetails
where tabD.Description.Contains(SearchCriteria)
select tabD;
How can I display / bind these two tables in the RadGridView control as MasterDetail?
I am using Telerik UI for WPF R1 2022 SP1 :)
Greetings,
FrankI'm looking to convert all my style in my application to Windows11 style.
However, I have a little probleme with TextBox. As we create a control template for our textbox to add a button, I'm not able to replicate the Windows11 style in my template.
Our textbox looks like this:
Button can be shown or not.
Now, I want a look like this (this is the autocompletebox):
I have a RadDiagram to which I bind a IGraphSource that contains some Items and Links. I'm just following the examples from Telerik documentation for everything, I have a default RadDiagram defined in my XAML and I set up some custom styles for the Shape and Connection.
Even if i make sure the ConnectorPositions are set up to connect to the Right and Left of the shapes, I can not figure out how to have items automatically align horizontally instead of vertically.
Here is how they align by default:
Here is how I want them to (automatically) align - left to right, horizontally:
How can I achieve a horizontal layout like this with dynamic data binding?
Thanks!