The character is rendered with different glyph geometry and wrong glyph width which results in overlapping text.
If you place a TextBlock in the QuickAccessToolbar and the Ofice_Black theme is applied you get black foreground on black background which makes the text unreadable. The content of the QAT must respect the theme applied to the RadRibbonView control.
When you hit the Enter key and a number simultaneously the number is removed from the Value of the RadMaskedNumericInput Workaround: Handle the KeyDown event of the RadMaskedNumericInput control, when the Enter key is pressed. private void INPUT_KeyDown(object sender, KeyEventArgs e) { if (e.Key == Key.Enter) { if (INPUT.Value.ToString().Length > 0) { RadWindow.Alert(INPUT.Value.ToString()); } e.Handled = true; } }
The Gridview Distinct Filters can't be reuse if the filtering panel is close.
When the filter panel is reopen selecting or deselecting distinct filter have no effect.
This is reproductible in telerik demo in any gridview with distinct filter.
the bug is present in browser and oob applications.
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.
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.
In Expression Dark theme when you have a TextBlock inside a FluidContentControl the foreground is not updated.
When using a diagram in the theme Windows8, the all the text in the RadComboBox controls inside SettingsPaneTextControl is not showing.
Please see the attached file for example.
In a newly created empty Silverlight project, the Theme is set to Windows 8:
StyleManager.ApplicationTheme = new Windows8Theme();
Create a RadDiagram in a xaml file
<telerik:RadDiagram x:Name="diagram">
<telerik:RadDiagramTextShape Content="Test" />
<primitives:ItemInformationAdorner.AdditionalContent>
<telerik:SettingsPane Diagram="{Binding ElementName=diagram}" />
</primitives:ItemInformationAdorner.AdditionalContent>
</telerik:RadDiagram>
And the text in the RadComboBox controls inside SettingsPaneTextControl is not visible.
most other themes work fine, but Window8 is not.
I already updated to the latest Telerik Silverlight libraries.