Unplanned
Last Updated: 29 Jun 2023 13:05 by Piotr
The form fields are not displayed when loading specific pdf files.
Unplanned
Last Updated: 16 Jun 2023 10:23 by ADMIN
Scrolling performance in large spreadsheets is significantly worse when auto filters are enabled.
Unplanned
Last Updated: 03 Aug 2022 06:54 by Winston

RadMaps Silverlight BingMap provider stopped displaying tiles in 2022 due to change in Bing Maps service.

Check notes here:

https://docs.microsoft.com/en-us/answers/questions/799630/arcgis-map-services-stopped-loading.html

Either workaround or statement regarding the future of this feature is needed.

Unplanned
Last Updated: 04 Feb 2022 17:26 by ADMIN
RTF documents that do not define the appropriate style types in the style definitions are not processable in RTB. While this is a deviation from the standard, MS Word manages to fix them and then open them.
Unplanned
Last Updated: 11 Jun 2021 08:12 by ADMIN

When the MinTimeRulerExtent of a view definition is lowered (to the point that the view does not have a scrollbar) and the EnableSmallAppointmentRendering is true, the content of the group headers is not displayed. 

Unplanned
Last Updated: 18 Mar 2019 11:56 by ADMIN
Created by: Ievgen
Comments: 0
Category: GridView
Type: Bug Report
1
 
Unplanned
Last Updated: 12 Mar 2019 09:18 by ADMIN

When the RadTabControl is placed in a RadBusyIndicator, one of the navigation repeat buttons is initially disabled.

As a workaround, you can invoke the ScrollToHorizontalOffset method of the ScrollViewer inside the RadTabControl in a Dispatcher in the Loaded event:

 private void RadTabControl_Loaded(object sender, RoutedEventArgs e)
        {
            var tabControl = sender as RadTabControl;
            var scrollViewer = tabControl.ChildrenOfType<ScrollViewer>().FirstOrDefault();
            Dispatcher.BeginInvoke(new Action(() =>
            {
                scrollViewer.ScrollToHorizontalOffset(5);
            }));
        }
Unplanned
Last Updated: 14 Jan 2019 14:03 by ADMIN

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.

Unplanned
Last Updated: 28 Nov 2018 17:33 by ADMIN
Some documents containing embedded jpeg images with DCTDecode filter are not decoded correctly in RadPdfViewer for Silverlight
Unplanned
Last Updated: 16 Nov 2018 12:49 by ADMIN

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)


Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: RichTextBox
Type: Bug Report
0
When the user opens a dialog in RadRichTextBox, after closing this dialog, the focus is lost.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
When a hyperlink is copy/pasted from MS Word to RadRichTextBox, only the display name is pasted and the hyperlink is lost.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
The textblocks in PageSetup dropdowns in PageLayout tab have black foreground, when Expression_Dark theme is applied. The foreground color should be white.
Unplanned
Last Updated: 31 Oct 2018 08:14 by ADMIN
If RadSpreadsheet is shown in RadWindow or in Popup, Filtering dialog throws NullReferenceException.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
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.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN
The character mapping cannot find the character with name "checkbld" and the glyph is not visualized.
Unplanned
Last Updated: 31 Oct 2018 08:11 by ADMIN


The exception can be observed when printing document containing images with unsupported formats, or images with empty source (RawData = "").

The exception is with the following call stack:

   at Telerik.Windows.Documents.UI.HeaderFooterContainer.UpdateUI(SectionLayoutBox sectionBox, Boolean delayed)
   at Telerik.Windows.Documents.UI.HeaderFooterContainer.UpdateUI(SectionLayoutBox sectionBox)
   at Telerik.Windows.Documents.UI.DocumentPrintPresenter.MeasureOverride(Size availableSize)
   at System.Windows.FrameworkElement.MeasureOverride(IntPtr nativeTarget, Single inWidth, Single inHeight, Single& outWidth, Single& outHeight)


Workarounds:

If you click on print preview and print the document from the preview it is working;
     2. Use the following code

        this.radRichTextBox .PrintStarted += Rtb_PrintStarted;

        private void Rtb_PrintStarted(object sender, EventArgs e)
        {
            RadRichTextBox rtb = (RadRichTextBox)sender;
            foreach (var floatingImage in rtb.Document.EnumerateChildrenOfType<FloatingImageBlock>()
                                                      .Where(fi => !this.IsSupportedImageFormat(fi.ImageInline.Extension))
                                                      .ToList())
            {
                floatingImage.Parent.Children.Remove(floatingImage);
            }

            foreach (var inlineImage in rtb.Document.EnumerateChildrenOfType<ImageInline>()
                                                    .Where(i => !this.IsSupportedImageFormat(i.Extension))
                                                    .ToList())
            {
                inlineImage.Parent.Children.Remove(inlineImage);
            }
        }

        private bool IsSupportedImageFormat(string format)
        {
            return (format == "jpg") ||
                   (format == "jpeg") ||
                   (format == "png") ||
                   (format == "bmp");
        }   

Unplanned
Last Updated: 31 Oct 2018 08:11 by Sistema PRI
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.
Unplanned
Last Updated: 31 Oct 2018 08:07 by ADMIN
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();
1 2 3 4 5 6