Duplicated
Last Updated: 09 Mar 2023 17:17 by ADMIN
Created by: Onno
Comments: 0
Category: UI for WPF
Type: Feature Request
2
I want to be able to specify the font family, size, etc. from XAML, not from code. 
Exactly the same as described here:
https://www.telerik.com/forums/implicit-styles-custom-font-and-font-size

(background: We are developing a UI Framework + resource dictionary for use in different applications. If each app will have to modify font sizes from code, inconsistencies are surely happen)
Declined
Last Updated: 21 Jun 2018 14:52 by ADMIN
Affects RadDateTimePicker control of TelerikWPFControls version 2015.1.1

When the user is typing in a specific date and time, the RadDateTimePicker control's text-to-date parsing doesn't accept an uppercase 'A' at the start of what it expects to be the month's name and automatically errors (displays a tooltip showing 'Error') as soon as an 'A' is input. This prevents the user from entering dates and times more specific than the clickable selection for the months of 'April' and 'August'. However, replacing the 'A' with a lowercase 'a' allows the user to proceed with entering more specific dates and times as normal without the 'Error' tooltip showing. 

E.g.: 
1) the user selects 03 April 2018 17:00:00 from the control's clickable selection of date and times;

2) they then try to type more specific minutes and seconds, e.g. 03 April 2018 17:45:23, but this is not accepted by the control and it displays the 'Error' tooltip;

3) workaround - the user changes 'A' of 'April' to a lowercase 'a', as in 'april'. Now the 'Error' tooltip goes away and the user is able to enter and save the more specific date time of 03 april 2018 17:45:23.

This bug only came to light once the control was live in production (released in January) and prevented our users from entering the specific trade date times necessary for regulatory purposes.

Can you tell me if this bug has been fixed in later versions of the control?

Thanks and regards,

Robert Fiteni
Unplanned
Last Updated: 14 Sep 2018 13:59 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: UI for WPF
Type: Feature Request
3

			
Unplanned
Last Updated: 20 Mar 2018 09:26 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: UI for WPF
Type: Feature Request
2

			
Declined
Last Updated: 19 Mar 2018 12:55 by ADMIN
Created by: wu
Comments: 1
Category: UI for WPF
Type: Feature Request
0
looking the attach file,when resize the second gridview's column moving back and forth when at first run the sample,the after columns flicker and the width grow and lessen.and when resize the third column,the 'unit price' column will become the min width.
but when test the microsoft's datagrid,it is good,the any other column width's change is gentle.
Unplanned
Last Updated: 19 Jul 2018 10:55 by Rick
Created by: Rick
Comments: 0
Category: UI for WPF
Type: Bug Report
5
List numbering should be restarted when copied list is pasted after content that is not in a list.

Steps to reproduce:
1. Create a file with a list, a blank line, some text, and another blank line
2. Copy the list
3. Paste it on the blank line directly after the list
Expected: The items are added to the end of the existing list
Observed: The items are added to the end of the existing list
4. Paste it on the blank line after the text
Expected: The items are added to a new list and start numbering at 1
Observed: The items are added to the existing list and start numbering at 7

Workaround:
private void RadRichTextBox_CommandExecuting(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
    if (e.Command is PasteCommand)
    {
        DocumentPosition position = new DocumentPosition(this.radRichTextBox.Document);
        position.MoveToPosition(this.radRichTextBox.Document.CaretPosition);
        position.MoveUp();
        Paragraph previousParagraph = position.GetCurrentParagraphBox().AssociatedParagraph;
        if (previousParagraph.IsInList)
        {
            // We shouldn't restart the numbering when the previous paragraph is in a list.
            return;
        }

        RadDocument doc = ClipboardEx.GetDocument().ToDocument();
        Paragraph firstParagraph = doc.EnumerateChildrenOfType<Paragraph>().First();
        if (firstParagraph != null && firstParagraph.IsInList)
        {
            RadDocumentEditor editor = new RadDocumentEditor(doc);
            editor.Document.CaretPosition.MoveToStartOfDocumentElement(firstParagraph);
            editor.RestartListNumbering();
        }

        this.radRichTextBox.InsertFragment(new DocumentFragment(doc));
        e.Cancel = true;
    }
}
Completed
Last Updated: 08 Mar 2018 16:34 by ADMIN
User can set AutoCalculateBounds to True by the following way:

 public class CustomClusterGenerator : DefaultClusterGenerator
    {
        public override ClusterData CreateCluster(Location center, object item)
        {
            var clusterData = base.CreateCluster(center, item);
            clusterData.AutoCalculateBounds = true;
            return clusterData;
        }
    }

  this.VisualizationLayer1.ClusterGenerator = new CustomClusterGenerator();

When clustering 4 points:

ObservableCollection<DataItem> items = new ObservableCollection<DataItem>()
            {
                new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(20, 30) },
                new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(20, 34) },

                new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(22, 32) },
                new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(18, 32) },
            };

            this.VisualizationLayer1.ItemsSource = items;

EXPECTED:  ClusterData's Bounds must  be:

WEST: 30 and EAST: 34.

Actual Values are 30 and 30 (29.9999 and 30).

Unplanned
Last Updated: 26 Feb 2018 12:20 by ADMIN
ADMIN
Created by: Sia
Comments: 0
Category: UI for WPF
Type: Feature Request
1
When you start editing the input control, the watermark text should go on top of it or to the left.
Completed
Last Updated: 23 Feb 2018 16:41 by ADMIN
You have, for example rectangle which is in ContentControl in XAML, next to FluidC.C.

FluidContentControl is in small state. Ona  button click SmallContent is assigned to the Rectangle.

This leads to the exception stated that rectangle is already a logical child of another element.
Declined
Last Updated: 21 Jun 2018 14:52 by ADMIN
Created by: Nebojsa Mancic
Comments: 1
Category: UI for WPF
Type: Feature Request
0
I want to have opportunity to disable RadExpander header because I want to programmatically expand or collapse RadExpander control.
Completed
Last Updated: 12 Feb 2018 11:45 by ADMIN
The fix will be available in the R1 2018 SP2 Release.
Unplanned
Last Updated: 11 Jun 2018 13:59 by ADMIN
maybe there are some ways to appear the  mouse point offset grow in steps when move the float window in raddocking by mouse drag.but I found when move the float window's header pass the document's tab,don't docking,then release mouse,and then move the float window again back and forth or up and down,the  mouse point offset grow in steps, at last the mouse's point leave the float window's header with hold the window's drag state.
Completed
Last Updated: 19 Feb 2018 15:12 by ADMIN
Basing on the "{StaticResource FilterControlStyle}" would cause an InvalidArgumentException, if the types would mismatch. 
If you are to base on a custom style on the default style of either of those controls, you can do it by type reference - e.g. BasedOn="{StaticResource {x:Type telerik:FilteringControl}}"
Completed
Last Updated: 17 Jan 2019 11:30 by ADMIN
Created by: David
Comments: 0
Category: UI for WPF
Type: Feature Request
6
With the release of the Fluent theme, it would be nice to have a Hamburger Menu control similar to the NavigationView for UWP (https://docs.microsoft.com/en-us/windows/uwp/design/controls-and-patterns/navigationview).

NavigationView is available with our latest official version - R1 2019.
Declined
Last Updated: 14 Feb 2018 09:01 by ADMIN
Created by: wu
Comments: 1
Category: UI for WPF
Type: Feature Request
0
with windows10/2k DPI/14 inch screen ,when show the gridview gridline,the line is different.
     the other things,when the tabitem is selected,the dropdownmenu can't mark the selected item.
   look the attach files!
Declined
Last Updated: 19 Jan 2018 05:30 by wu
Created by: wu
Comments: 2
Category: UI for WPF
Type: Feature Request
0
I know the Transitioncontrol  have the MotionBlurredZoomTransition, the effect is better for image ,but not UI content,especially when the UI use the simple color,the MotionBlurredZoomTransition effect is weak,I find the RadCalendar control with the cool zoom animation,How to realize?
     the other question:How to realize the book turning animation with the Transitioncontrol  ?
Unplanned
Last Updated: 18 Dec 2017 13:14 by ADMIN
It seems that on some devices a touch with the Stylus doesn't fire the WPF native Touch events. Only the Stylus events will be fired. Because the TouchManager internally works only with the WPF Touch events, the manager's events are not fired.
Unplanned
Last Updated: 05 Feb 2018 09:52 by alang
https://www.telerik.com/forums/printing-3559585fdb4e
https://www.telerik.com/forums/print-bb34c69c1e37
https://www.telerik.com/forums/printing-rasscheduleview-mvvm