Here is the error:
Invalid XmlnsDeclaration occurs in assembly 'Telerik.Windows.Controls.GridView, Version=2018.3.1016.1050, Culture=neutral, PublicKeyToken=5803cfa389c90ce7'. XmlnsDeclaration references a namespace 'Telerik.Windows.Controls.MultiColumnComboBox' that is not in the assembly.
It is reproducible only in Visual Studio 2010 SP1.
At this point not much else is known other than the stack trace. The stack trace suggests that this happens on selection done by dragging the mouse and perhaps the document is with incorrect structure.
Exception: [ArgumentNull_Generic]
Arguments:
Debugging resource strings are unavailable. Often the key and arguments provide sufficient information to diagnose the problem. See http://go.microsoft.com/fwlink/?linkid=106663&Version=5.1.50907.00&File=mscorlib.dll&Key=ArgumentNull_Generic
Parameter name: inline
at Telerik.Windows.Documents.Model.RadDocument.GetContainingAnnotationRanges[TRangeStart](Inline inline, Predicate`1 filter, Boolean inclusive)
at Telerik.Windows.Documents.DocumentPosition.get_IsPositionInSkipPositionRange()
at Telerik.Windows.Documents.DocumentPosition.get_IsValidPosition()
at Telerik.Windows.Documents.DocumentPosition.Validator.EnsureValidPosition(DocumentPosition position, Func`1 shouldSearchForward)
at Telerik.Windows.Documents.Selection.MouseSelectionHandler.UpdateSelectionAndCaretPosition()
at Telerik.Windows.Documents.Selection.MouseSelectionHandler.RegisterDocumentMouseMove(Point position, SourceType source)
at Telerik.Windows.Documents.UI.DocumentPresenterBase.HandleMouseMoveOnPosition(Point position, SourceType source)
at Telerik.Windows.Documents.UI.DocumentPresenterBase.Owner_MouseMove(Object sender, MouseEventArgs e)
at MS.Internal.CoreInvokeHandler.InvokeEventHandler(UInt32 typeIndex, Delegate handlerDelegate, Object sender, Object args)
at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, Int32 actualArgsTypeIndex, String eventName, UInt32 flags)
When the user opens a dialog in RadRichTextBox, after closing this dialog, the focus is lost.
When a hyperlink is copy/pasted from MS Word to RadRichTextBox, only the display name is pasted and the hyperlink is lost.
The textblocks in PageSetup dropdowns in PageLayout tab have black foreground, when Expression_Dark theme is applied. The foreground color should be white.
If RadSpreadsheet is shown in RadWindow or in Popup, Filtering dialog throws NullReferenceException.
The reusable Form XObject content always resets its GraphicState color property. Instead, it should take the current GraphicState color from the content stream. This may result in wrong colors.
The character mapping cannot find the character with name "checkbld" and the glyph is not visualized.
The exception can be observed when printing document containing images with unsupported formats, or images with empty source (RawData = "").
The calculation of the left and hanging indent is incorrect for paragraph in list when the left and hanging indents are with the same value.
The colors are different everytime the file is opened in the viewer. Available in R1 2017 Release
Italic bullet sign of bulleted paragraph (with last italic characters) is exported like an equal sign with a line through it. Workaround: Make all italic bullets non-italic. The following code achieves that: RadDocument document = this.radRichTextBox.Document; foreach (var paragraph in document.EnumerateChildrenOfType<Paragraph>()) { if (paragraph.ListId != Paragraph.ListIdProperty.DefaultValue) { DocumentList documentList = document.ListManager.GetDocumentListById(paragraph.ListId); int levelIndex = paragraph.ListLevel != Paragraph.ListLevelProperty.DefaultValue ? paragraph.ListLevel : 0; if (documentList.ActualStyle.Levels[levelIndex].NumberingFormat == ListNumberingFormat.Bullet) { documentList.ActualStyle.Levels[levelIndex].SpanProperties.FontStyle = FontStyles.Normal; } } } this.radRichTextBox.UpdateEditorLayout();
When entering header, the focus is moved to the footer. When entering footer, focus goes to the main document editor, comment editor (if comment is present), or footnotes/endnotes editor (if footnotes/endnotes are present). Sometimes the focus is moved to the Font combo box in the Ribbon UI. When inserting symbols in the header, some of them are inserted in the footer.
The character is rendered with different glyph geometry and wrong glyph width which results in overlapping text.
As a workaround inherit RevisionsToolTipLayer and override ResetPooledElementProperties method protected override void ResetPooledElementProperties(object element) { if (element is Path) { Path path = (Path)element; path.Data = null; path.Fill = null; path.Dispatcher.BeginInvoke(()=> ToolTipService.SetToolTip(path, null)); } }
When color is applied to table cell border through the Table Borders -> Cell Borders, the thickness of the border is set to 0. This makes the border invisible. Workaround: Change the border thickness manually in the dialog after the color is changed. Steps to reproduce: - Add table with one column - Open from context menu Table Borders dialog - Click on Cell Borders tab - Apply color -> blue - Press OK Expected: The table cell has blue borders applied. Actual: The table cell has no borders.
The borders of a row spanned (merged) cell are not correctly imported if the borders are applied before the merge.