Declined
Last Updated: 04 May 2015 08:58 by ADMIN
Created by: Benjamin
Comments: 1
Category: UI for WPF
Type: Feature Request
0
The size of the DragVisual is limited by the screen resolution and is clip to bound. (Ticket ID : 917878)
Declined
Last Updated: 15 Apr 2015 07:45 by ADMIN
Created by: Mi
Comments: 1
Category: UI for WPF
Type: Feature Request
2
I think this could help sometimes to get up to speed, if you could provide XAML code snippets for your controls!

http://timheuer.com/blog/archive/2013/07/08/xaml-code-snippets-for-visual-studio.aspx
Declined
Last Updated: 07 Apr 2015 15:36 by ADMIN
Created by: Petr
Comments: 2
Category: UI for WPF
Type: Feature Request
0
You can find the following forum thread where a solutions is proposed:

http://www.telerik.com/forums/about-reorder-by-sumfunction-value
http://www.telerik.com/forums/can-you-sort-by-an-aggregrate-function
http://www.telerik.com/forums/customize-group-and-sort
Completed
Last Updated: 30 Mar 2015 08:44 by ADMIN
Hello,
I am launching standalone Telerik Report Designer from our application to edit custom reports stored in a database.
I was able to inject the application custom functions assembly reference into designer`s config before launching it and it works fine.
But I was not able to inject the application connection string into designer`s config before launching it because the designer does not use global ConnectionStrings section, but custom ConnectionStrings section in userSettings which makes it problematic to update.
Can You change the designer to allow usage of ConnectionStrings from the designer`s global config section or provide another means?
That is essential to render reports successfully with correct data, because the reports use named connection strings.
I preffer this instead of changing all connection strings in report`s data sources.

Thank You

Marek Istvanek
HaSaM
Czech Republic
Declined
Last Updated: 09 Mar 2015 13:39 by ADMIN
Created by: Klemens
Comments: 3
Category: UI for WPF
Type: Feature Request
0
New control for toast notifications like in Windows 8 but inside the program.
Declined
Last Updated: 04 Mar 2015 09:40 by Suzanne
If there is a way to do this, I would love to know. It is driving my users crazy.
Completed
Last Updated: 27 Feb 2015 07:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 9
Category: UI for WPF
Type: Feature Request
96
Add new control to the suite: Wizard control.
Completed
Last Updated: 18 Feb 2015 15:18 by ADMIN
Created by: Jean-Marc
Comments: 1
Category: UI for WPF
Type: Feature Request
0
I am currently working with MaskedInput control, and I have an issue on your documentation.  Why is there no explanation on all the properties, even in your demo there are a lack of explanation.  For instance, SpinMode, what is this, what does it do?
IsManinulationEnabled, what does this do, under which control, the Numeric,, Decimal, DateTime or Text???  Why Text and Value.   What is OriginalValue means? The control have an AcceptsReturn properties, why not an AcceptsTab properties?
Declined
Last Updated: 09 Feb 2015 13:05 by ADMIN
ADMIN
Created by: Dimitrina
Comments: 0
Category: UI for WPF
Type: Feature Request
2
The keyboard is shown differently in each platform and permission sets, thus will not be implemented out of the box.
Declined
Last Updated: 09 Feb 2015 09:10 by ADMIN
Created by: Lisitsa
Comments: 3
Category: UI for WPF
Type: Feature Request
1
Make easy way to set Stroke/Fill for all columns in a specific BarSeries. I know about DefaultVisualStyle, but it's too cumbersome to use. For example, Infragistics's chart has this.

Just make use of properties like Background and Stroke.

REASON FOR DECLINATION:
We have decided to decline this feature request because the bar series can be styled via few different approaches, such as a chart palette, default visual style, default visual style selector, point template, point template selector. We consider the DefaultVisualStyle a very framework-friendly approach as it is easy to create and set up a style, in which you can manipulate any of the Border's properties, including adding Bindings to the actual business item. 
Declined
Last Updated: 06 Feb 2015 15:36 by ADMIN
Created by: Achileess
Comments: 1
Category: UI for WPF
Type: Feature Request
0
we used RadAutoCompleteBox for user to get value quickly.But here we faced the problem as if the user enter incorrect value(which is not present in the Item Source),we need to show the validation error text as the text you enter is incorrect like that. and we need this validation in the data annotation format (ex : RadMaskedTextBox for Numeric). 
Declined
Last Updated: 06 Feb 2015 09:12 by Lisitsa
Created by: Lisitsa
Comments: 2
Category: UI for WPF
Type: Feature Request
1
Make legend item of BarSeries reflect it's visual style. For example, if I'll make a BarSeries with a border like this:
<Style TargetType="Border">
    <Setter Property="Background" Value="Transparent" />
    <Setter Property="BorderThickness" Value="1" />
    <Setter Property="BorderBrush" Value="{StaticResource chartRed}" />
</Style>

then there won't be a rectangle in a legend as expected (it will show a transparent one instead, without border).

REASON FOR DECLINATION:
The RadLegend is a standalone control which allows for customization of the legend item visuals (one can use the ItemTemplate property of the RadLegend to control the legend item's appearance or can retemplate the LegendItemControl). There is no direct link between the ChartView and the RadLegend control and the appearance of the legend elements can be done by framework means such as Style, DataTemplate and ControlTemplate. The suggested way of manipulating the look of the chart legend item is making use of the ItemTemplate property of the RadLegend and the MarkerGeometry property of the series legend settings. 
Declined
Last Updated: 05 Feb 2015 09:04 by ADMIN
Created by: Jean-Marc
Comments: 1
Category: UI for WPF
Type: Bug Report
0
You example of the mask token are as follow
XAML

<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
    <TextBlock Text="Mask: A" />
    <telerik:RadMaskedTextInput Margin="0,5,0,10" Mask="AAAAAA" />
    <TextBlock Text="Mask: a" />
    <telerik:RadMaskedTextInput Margin="0,5,0,10" Mask="aaaaaa" />
    <TextBlock Text="Mask: L" />
    <telerik:RadMaskedTextInput Margin="0,5,0,10" Mask="LLLL" />
    <TextBlock Text="Mask: l" />
    <telerik:RadMaskedTextInput Margin="0,5,0,10" Mask="llll" />
    <TextBlock Text="Mask: \" />
    <telerik:RadMaskedTextInput Mask="\#\\###" />
    <TextBlock Text="Mask: Any other characters" />
    <telerik:RadMaskedTextInput Mask="N\ame: llll" />
</StackPanel>

and the result should be as follow
Mask A = Aa1 +;
Mask a = Ab-,"

which is fine.
But if I use any of the capital A or L, in the MVVM, the binding is not working anymore.

I have attached a file.
Run the program and press add button
Enter info in First Name, then enter info in Last Name.
Put a break point in the file RecipientData.cs at the properties FirstName on get and set, and do the same for LastName properties.
In the xaml, the only difference between those 2 controls one the Mask="&gt;L1A29" for the first name and Mask="&gt;l1a29" for the last name.  I do not know what is going on behind the scene of this control, but I know there are some issues.

REASON FOR DECLINATION
This is expected behavior in the MaskedInputControls. Please read more in the comments.
Declined
Last Updated: 30 Jan 2015 16:06 by ADMIN
Created by: Jean-Marc
Comments: 1
Category: UI for WPF
Type: Feature Request
0
Hi, I just updated all the UI telerik controls for wpf, and now none of my control in the code are working anymore.  It is from the version 2012.3.1017.40 to version 2014.3.1202.20.
Can anyone help me.
Completed
Last Updated: 28 Jan 2015 11:45 by Christian
ADMIN
Created by: Pavel R. Pavlov
Comments: 1
Category: UI for WPF
Type: Bug Report
1
When you place items in the gallery there are scenarios where the tooltip of the scroll up/down buttons is not correct.

Available in LIB version: 2014.3.1402
Declined
Last Updated: 21 Jan 2015 14:43 by ADMIN
Created by: Paul
Comments: 1
Category: UI for WPF
Type: Feature Request
1
Add a new media encoding control that can create video files frame by frame (from images) together with an audio track. Maybe support avi, mp4, wmv...
Completed
Last Updated: 12 Dec 2014 13:43 by ADMIN
Declined
Last Updated: 11 Dec 2014 15:13 by ADMIN
Created by: dxk240
Comments: 2
Category: UI for WPF
Type: Feature Request
1
A button that once clicked shows a circular menu with additional choices the user can select.
Declined
Last Updated: 01 Dec 2014 13:47 by ADMIN
Created by: Paul
Comments: 1
Category: UI for WPF
Type: Feature Request
1
I'd really like a WPF (and Silverlight) version of the Windows Phone Conversation View control.
Declined
Last Updated: 21 Nov 2014 13:00 by ADMIN
Created by: Kennet
Comments: 2
Category: UI for WPF
Type: Feature Request
2
Since you gave us CloudUpload, how about a "CloudDownload" so I can get the stuff I uploaded...

Also native support for OneDrive and Dropbox would be nice.

Thanks!