Completed
Last Updated: 09 Mar 2023 17:21 by ADMIN
Completed
Last Updated: 09 Feb 2023 16:45 by ADMIN
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;
    }
}
Completed
Last Updated: 19 Jan 2023 14:56 by ADMIN
Release R3 2022 SP1
When exporting a document in a Silverlight project using the XamlFormatProvider an exception is thrown.
Completed
Last Updated: 01 Jun 2022 11:13 by ADMIN
Release LIB 2022.2.606 (06 June 2022)
Completed
Last Updated: 08 Apr 2022 13:49 by ADMIN
Release LIB 2022.1.411 (11 Apr 2022)
Missing StaticResource error (ScrollBarStyle) is thrown when using implicit styles and merging the Telerik.Windows.Controls.RichTextBoxUI.xaml file.
Completed
Last Updated: 16 Feb 2022 14:02 by ADMIN
The tool does not found issues in a Silverlight project
Completed
Last Updated: 07 May 2021 13:46 by ADMIN
Release R2 2021
Completed
Last Updated: 05 Oct 2020 13:56 by ADMIN
Release LIB 2020.3.1012 (12/10/2020)
If the appearance is defined using a non-existing object reference in PDF document, NullReferenceException is thrown on import. 
Completed
Last Updated: 05 Oct 2020 09:24 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: ToolTip
Type: Bug Report
1

			
Completed
Last Updated: 23 Jan 2020 12:23 by ADMIN
In Expression Dark theme when you have a TextBlock inside a FluidContentControl the foreground is not updated.
Completed
Last Updated: 18 Oct 2019 14:32 by ADMIN
Release R3 2019 SP
Completed
Last Updated: 04 Sep 2019 11:00 by ADMIN

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.

 

Completed
Last Updated: 11 Jul 2019 13:15 by ADMIN
Release LIB 2019.2.715 (7/15/2019)

This reproduces only if the FlipDuration property of RadBook is set to 0. 

To work this around set the FlipDuration to a bigger value. For example: FlipDuration="0:0:0.001"

Completed
Last Updated: 03 Jul 2019 12:10 by ADMIN
Release LIB 2019.2.708 (7/8/2019)
The items of the RadComboBox control in the SettingsPane Text tab are not visible when the Windows8 theme is applied using StyleManager.
Completed
Last Updated: 31 Oct 2018 08:11 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PDFViewer
Type: Bug Report
0
The colors are different everytime the file is opened in the viewer.

Available in R1 2017 Release
Completed
Last Updated: 30 Oct 2018 07:30 by ADMIN
The DropDownMenu is incorrectly positioned when the default TabStripPlacement is changed - if the TabStripPlacement is set to Bottom/Left/Right, the DropDownMenuis displayed at the top left corner of the screen.
Completed
Last Updated: 14 Sep 2018 11:10 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 1
Category: UI for Silverlight
Type: Bug Report
0
The current workaround is to edit the control template of the control and set the MinWidth of the PART_ListBox element:

                   <Popup x:Name="PART_Popup">
						<Grid x:Name="PopupRoot">
							<telerik:RadListBox x:Name="PART_ListBox"
												 MinWidth="{TemplateBinding MinDropDownWidth}"
												MaxHeight="{TemplateBinding MaxDropDownHeight}"
                            ItemsSource="{TemplateBinding FilteredItems}"
                            ItemTemplate="{TemplateBinding DropDownItemTemplate}"
                            FontFamily="{TemplateBinding FontFamily}"
                            FontSize="{TemplateBinding FontSize}"/>
							<Border
                            Background="{Binding Background, ElementName=PART_ListBox}"
                            BorderBrush="{TemplateBinding BorderBrush}"
                            BorderThickness="1"
                            Width="{Binding ElementName=PART_ListBox, Path=Width}"
                            Visibility="{Binding ElementName=PART_NoResultsContentPresenter, Path=Visibility}">
								<ContentPresenter x:Name="PART_NoResultsContentPresenter"
                                MinWidth="{TemplateBinding MinDropDownWidth}"
                                MaxHeight="{TemplateBinding MaxDropDownHeight}"
                                Content="{TemplateBinding NoResultsContent}"
                                ContentTemplate="{TemplateBinding NoResultsContentTemplate}"
                                Visibility="Collapsed"
                                Margin="5 4"/>
							</Border>
						</Grid>
                   </Popup>
Completed
Last Updated: 17 Aug 2018 07:31 by ADMIN
Completed
Last Updated: 20 Jul 2018 13:42 by Patrick
ADMIN
Created by: Stefan
Comments: 3
Category: ToolTip
Type: Bug Report
2

			
Completed
Last Updated: 19 Jul 2018 12:22 by ADMIN
1 2 3 4 5 6