Support PRISM / MEF in Xap minifier.
After minfying RadGridView - the Sum Aggregate Functions are removed.
Open the ColorPicker Then add Color in the RecentColorsitemsSource collection. Open the Colorpicker again - recent colors are not visible. Available in LIB version: 2014.3.1124
Exception is thrown if the size of Fluid is 0 and you maximize the window.
When the VisualizationLayer.ShapeFill property uses the StrokeDashArray then the System.Reflection.TargetInvocationException exception ("The value does not fall within the expected range") is thrown. Available in Q3 2014.
Convert the interfaces and base classes (i.e. non UI specific logic) to a portable library. We intend our solution to share Models and View Models between WPF and Silverlight (and more in the future). Our intention is to use Portable Libraries to achieve this. The biggest issue we have is down to the Telerik assemblies. Classes and interfaces that are shared between WPF and Silverlight could/should be in a PCL assembly.
it would be cool if your controls can be used in Xamarin
Problem noticeable by observing growth in queued changes to be processed.
Use Matrix3DProjection for 3D transformation
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?
Hitting dot or comma on the keyboard doesn't move the cursor after the decimal separator in the MaskedNumeric/CurrencyInput controls in Mac
Counting distinct items is often necessary in a grid. Showing the number of customers in a list of orders for example (one customer may have multiple orders listed in the Grid).
The RibbonWindow chrome is not rendered correctly(the chrome is black) after we change from a windows7 aero theme to classic.
When you try to scroll the tabs in the tabstrip the scrollviewer is scrolled to its start
There is a memory leak in RadRibbonView when it is hosted in a TabControl.
When I use Shift+Ctrl+Z combination in MaskedTextInput, corrupted symbols appeared in the field. I know that Ctrl+Y combination use as the forward command. But in another program (Photoshop) I use Ctrl+Z and then Ctrl+Shift+Z combinations, and sometimes I use it habitually in MaskedTextInput and see corrupted symbols. (Many people can also use it habitually). When i use it nothing should happen or should be a step back.
Silverlight uses short types internally for shapes' sizes and when the size of the line grows up to more than the short's max, extra lines are rendered. A possible work-around is to limit the zoom.