Declined
Last Updated: 05 Jan 2017 13:25 by ADMIN
When the PngBitmapEncoder uses source from a PNG file with opacity then the result image rendering is gray. The class is available in UI for Silverlight.
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for Silverlight
Type: Bug Report
2
Telerik.Windows.Controls.Charting.dll cannot be minified
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
The MaskedInput controls cannot be extracted from the Telerik.Windows.Controls.Input.dll
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for Silverlight
Type: Bug Report
9
Extend the WP7 support. Add support for each assembly and control.
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for Silverlight
Type: Bug Report
4
Sometimes the application never loads the requested dlls' content.
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
Summer, Office_Silver, Office_Black Themes cannot be minified , after loading they dissapear from the "extracting" grid
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
RadRichTextBox`s dlls cannot be minified ( Telerik.Windows.Documents and its derivative dlls)
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
ColorToBrushConverter is removed but is used, causing run-time error.
Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for Silverlight
Type: Bug Report
2
XamlParseException when minifying the XAP
Declined
Last Updated: 21 Mar 2016 14:02 by ADMIN
Created by: Arathi
Comments: 1
Category: UI for Silverlight
Type: Bug Report
0
Hi team,
We are facing below list of issues with telerik test studio. We would like to know what will be the best approach to capture and run automation test cases for Silverlight web application.
Using telerik test studio we have automated our Siliverlight application but some of the test cases getting fails. Sometimes it works sometimes not.
1.	Test step to select an item form Dropdown/ComboBox fails.
2.	New version (2015.3) of telerik test studio take longer time to start execution of test cases from Visual studio. When we execute test cases from test studio, it run faster won’t take time to start execution. 
3.	Today’s captured/modified test cases works fine but the same test cases we run on next/later days than it fails at certain steps. Like element not found, not able to select an item from dropdown etc.
4.	Some of the test cases get fail when we schedule it but the same test case works fine we run it individually.
5.	We are using TFS for source code repository, Sometimes when we open automation project in visual studio than all test case files get checked out though we have not made any changes.
6.	Not able compare two different version of one test case file(if two user works on same file and one has checked in it and another one is taking latest to merge both file).
Please provide resolution of these queries. Continuously we are facing these issues.
Also let us know what are the best practice to work with telerik test studio for web app automation.
Declined
Last Updated: 04 Feb 2016 14:08 by ADMIN
Custom color does not gets applied in the exported file (no matter if you export to .xslx or image file like .png ). The problem occurs if Alpha Transparency of the color is specified. 

The XAML team has recently reviewed this issue and will not be addressing it as at this time the team is focusing on the bugs impacting the highest number of developers. If you have encountered this issue and it is blocking for your work please contact us through the support ticketing system with details on your setup and a reference to this item.

Workaround:
Set the Background of the RadCartesianChart to White.
Declined
Last Updated: 08 May 2015 14:23 by ADMIN
Created by: B
Comments: 1
Category: UI for Silverlight
Type: Bug Report
0
In the Office2013 theme for both SIlverlight and WPF in the latest version, the RadTabItemStyle has the Office Black for unfocussed tabs.

To fix this I added the lines:

        <Setter Property="Background" Value="{x:Null}" />
        <Setter Property="BorderBrush" Value="{x:Null}" />

Not sure if that is the right place to fix it, because in the previous version of the Office2013 theme (where the RadTabItem had the right style) those 2 lines were not present.
==========================
DECLINED DUE TO INACTIVITY.
Declined
Last Updated: 09 Dec 2014 15:08 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for Silverlight
Type: Bug Report
1
Problem with finding dependencies not statically known.
Declined
Last Updated: 09 Dec 2014 15:07 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 18
Category: UI for Silverlight
Type: Bug Report
68
Hanging the UI for bigger xaps.
Declined
Last Updated: 05 Dec 2014 14:57 by ADMIN
Change the version of the assemblies so the Visual Studio start diferentiate them from the original
Declined
Last Updated: 01 Dec 2014 15:31 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for Silverlight
Type: Bug Report
3
Support PRISM / MEF in Xap minifier.
Declined
Last Updated: 01 Dec 2014 15:31 by ADMIN
After minfying RadGridView - the Sum Aggregate Functions are removed.
Declined
Last Updated: 08 Aug 2014 12:18 by ADMIN
Created by: simone massaro
Comments: 1
Category: UI for Silverlight
Type: Bug Report
1
Hello,

I have a problem with the RadMap component which leads the silverlight plugin to a crash.
Basically i'm changing periodically the center of the map using the "ZoomLevel" and the "Center" properties of the map and after a casual number of times the silverlight plugin crashes with an  "AccessViolationException"

In order to reproduce the issue is sufficient to create a project with a simple user control with the following XAML:

<UserControl x:Class="RadMapTest.Map"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">
     
    <Grid x:Name="LayoutRoot" Background="White">
        <telerik:RadMap x:Name="MapControl" >
            <telerik:RadMap.Provider>
                <telerik:ArcGisMapProvider Mode="Aerial"  />
            </telerik:RadMap.Provider>
        </telerik:RadMap>
    </Grid>
</UserControl>


And the following code behind:

using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Threading;
 
namespace RadMapTest
{
    public partial class Map : UserControl
    {
        private bool zoomOut;
        private DispatcherTimer timer;
        private Random random;
 
        public Map()
        {
            this.zoomOut = true;
            this.timer = new DispatcherTimer();
            this.random = new Random(DateTime.Now.Second);
            InitializeComponent();
 
            this.Loaded += OnLoaded;
        }
 
        private void OnLoaded(object sender, RoutedEventArgs e)
        {
            this.timer.Interval = TimeSpan.FromMilliseconds(1000);
            this.timer.Tick += this.OnTick;
            this.timer.Start();
        }
 
        private void OnTick(object sender, EventArgs e)
        {
            this.MapControl.Center = new Telerik.Windows.Controls.Map.Location((random.NextDouble() * 180) - 90, (random.NextDouble() * 360) - 180);
            this.MapControl.ZoomLevel = zoomOut ? this.MapControl.MinZoomLevel : random.Next(this.MapControl.MinZoomLevel, this.MapControl.MaxZoomLevel);
 
            zoomOut = !zoomOut;
        }
    }
}

I was able to reproduce this issue with the Silverlight Q1 2014 and Silverlight Q2 2014.
Also I have tried both Bing and ArcGIS providers.

In the test i'm using a very short animation time (1 sec), but the problems persists also with longer timings (e.g. 45 sec).

Can you provide some help on this?