Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
ParagraphMarkerProperties of a Paragraph element are not cloned and this leads to incorrect list numbering (bullets) rendering after export since the numbering styles (bullets, numbers and etc.) copy the style properties from there.
This affects Clone() method of the Paragraph and ergo RadFlowDocumentEditor.InsertDocument() method and DocumentElementImporter.Import() methods since they're using Clone() method internally.
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190115 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
ADMIN
Created by: Mihail
Comments: 0
Category: UI for WPF
Type: Bug Report
0
The document default style properties are not cloned on document.Clone().
There is a workaround by using the following code:

var cloning = this.document.Clone();
ClearPropertiesWithoutValueAndSetLocalValues(this.document.DefaultStyle.CharacterProperties, cloning.DefaultStyle.CharacterProperties);
ClearPropertiesWithoutValueAndSetLocalValues(this.document.DefaultStyle.ParagraphProperties, cloning.DefaultStyle.ParagraphProperties);

private void ClearPropertiesWithoutValueAndSetLocalValues(DocumentElementPropertiesBase propertiesFrom, DocumentElementPropertiesBase propertiesTo)

{
	foreach (var stylePropertyFrom in propertiesFrom.StyleProperties)
	{
		var stylePropertyTo = propertiesTo.GetStyleProperty(stylePropertyFrom.PropertyDefinition);
		stylePropertyTo.ClearValue();
		if (stylePropertyFrom.HasLocalValue)
		{
			object value = stylePropertyTo.GetLocalValueAsObject();
			stylePropertyTo.SetValueAsObject(value);
		}
	}
}
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190117 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: UI for WPF
Type: Feature Request
0
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190118 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
Styled text in a list item <li> is imported as a different paragraph. The result is split of the text into multiple paragraphs which are not in a list.
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190120 
Please use the new item for commenting, voting and subscribing instead of this one.
Completed
Last Updated: 24 Jun 2016 11:55 by ADMIN
When set MinLines and MaxLines to a TextBox styled with and theme different from Expression Dark, entering text in the TextBox results in an unexpected behavior of the TextBox Height.

Fix available in LIB Version 2016.2.627.
Declined
Last Updated: 22 Jul 2016 10:39 by Dinko
My RadTreeView is bound to VirtualQueryableCollectionView. Changes on Filter and Sort Descriptors works fine but calling to VirtualQueryableCollectionView.Refresh() method throws a NullReferenceException with the following stacktrace:

   at Telerik.Windows.Controls.TreeView.WeakReferenceKey`1..ctor(T item)
   at Telerik.Windows.Controls.TreeView.ItemAttachedStorage.SetValue(Object item, DependencyProperty property, Object value)
   at Telerik.Windows.Controls.RadTreeView.ClearDependencyProperties(RadTreeViewItem treeViewItem, Object item)
   at Telerik.Windows.Controls.RadTreeView.ClearContainerForDescendant(DependencyObject element, Object item)
   at Telerik.Windows.Controls.RadTreeView.ClearContainerForItemOverride(DependencyObject element, Object item)
   at System.Windows.Controls.ItemsControl.MS.Internal.Controls.IGeneratorHost.ClearContainerForItem(DependencyObject container, Object item)
   at System.Windows.Controls.ItemContainerGenerator.UnlinkContainerFromItem(DependencyObject container, Object item, IGeneratorHost host)
   at System.Windows.Controls.ItemContainerGenerator.Remove(GeneratorPosition position, Int32 count, Boolean isRecycling)
   at System.Windows.Controls.ItemContainerGenerator.System.Windows.Controls.Primitives.IRecyclingItemContainerGenerator.Recycle(GeneratorPosition position, Int32 count)
   at Telerik.Windows.Controls.TreeView.TreeViewPanel.CleanupRange(IList children, IItemContainerGenerator generator, Int32 startIndex, Int32 count)
   at Telerik.Windows.Controls.TreeView.TreeViewPanel.CleanupContainers(Int32 firstViewport, ItemsControl itemsControl)
   at Telerik.Windows.Controls.TreeView.TreeViewPanel.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ItemsPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint)
   at System.Windows.Controls.ScrollContentPresenter.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.Grid.MeasureCell(Int32 cell, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV, Boolean& hasDesiredSizeUChanged)
   at System.Windows.Controls.Grid.MeasureCellsGroup(Int32 cellsHead, Size referenceSize, Boolean ignoreDesiredSizeU, Boolean forceInfinityV)
   at System.Windows.Controls.Grid.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.Controls.ScrollViewer.MeasureOverride(Size constraint)
   at System.Windows.FrameworkElement.MeasureCore(Size availableSize)
   at System.Windows.UIElement.Measure(Size availableSize)
   at System.Windows.ContextLayoutManager.UpdateLayout()
   at System.Windows.ContextLayoutManager.UpdateLayoutCallback(Object arg)
   at System.Windows.Media.MediaContext.InvokeOnRenderCallback.DoWork()
   at System.Windows.Media.MediaContext.FireInvokeOnRenderCallbacks()
   at System.Windows.Media.MediaContext.RenderMessageHandlerCore(Object resizedCompositionTarget)
   at System.Windows.Media.MediaContext.RenderMessageHandler(Object resizedCompositionTarget)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
   at System.Windows.Threading.DispatcherOperation.InvokeImpl()
   at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
   at MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(Object obj)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Windows.Threading.DispatcherOperation.Invoke()
   at System.Windows.Threading.Dispatcher.ProcessQueue()
   at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
   at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
   at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
   at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
   at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
   at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
   at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
   at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
   at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
   at System.Windows.Application.RunDispatcher(Object ignore)
   at System.Windows.Application.RunInternal(Window window)
   at System.Windows.Application.Run(Window window)
   at System.Windows.Application.Run()
Declined
Last Updated: 11 Jul 2016 13:35 by ADMIN
Created by: Marcus
Comments: 1
Category: UI for WPF
Type: Bug Report
0
When the RadRibbonSplitButton fires the command everything works fine.

When the RadMenuItem inside the RadRibbonSplitButton.DropDownContent fires the same command, the "this.Cursor = Cursors.Wait;" inside the method has no effect.
The Cursor doesn't change.

See the attached sample application

Decline Reason: This behavior is expected and it comes from the WPF native Popup element which hosts the button's DropDownContent. Basically, when the split button is clicked and the Window Cursor is changed, the mouse is over the window before the application freezes and you can see that it is changed. On the other hand due its specifics the Popup is not placed directly in the Window (it is rendered into a separate visual tree) and when the Window's cursor is changed, you won't see it because the mouse is not over the Window. So, the application freezes before the mouse gets over the window. You can resolve this by setting the Popup Cursor property or the static Mouse.OverrideCursor property.
Completed
Last Updated: 24 Jan 2017 07:20 by ADMIN
Completed
Last Updated: 27 Feb 2017 08:26 by ADMIN
For more details check here: http://jeremybytes.blogspot.com/2014/10/using-callermembername-attribute-for.html

Available in the R1 2017 SP1 Release.
Declined
Last Updated: 03 Aug 2017 11:52 by ADMIN
Created by: Pierre
Comments: 1
Category: UI for WPF
Type: Feature Request
0
In addition to the great nuget packages, could we also get Nuget packages with symbols baked in?

https://docs.nuget.org/ndocs/create-packages/symbol-packages
Completed
Last Updated: 18 Apr 2017 07:50 by ADMIN
ADMIN
Created by: Masha
Comments: 1
Category: UI for WPF
Type: Bug Report
0
Glyphs overview: http://docs.telerik.com/devtools/wpf/styling-and-appearance/glyphs/common-styles-appearance-glyphs-overview 

Available in 2017 R2 Official Release.
Completed
Last Updated: 07 Oct 2016 08:55 by ADMIN
Completed
Last Updated: 04 Jan 2017 13:42 by ADMIN
This blends the text with the background and only a black rectangle is displayed. See the attached image.
Completed
Last Updated: 21 Nov 2016 14:54 by ADMIN
When add references to GridView, GanttView, Input, Pivot, PivotFieldList binaries and open VisualStudio designer, add telerik schema and open VS designer, the following exceptions are shown in output window: 
There was an exception when loading the design time assembly 'C:\Users\Andy\AppData\Local\Microsoft\VisualStudio\14.0\Designer\ShadowCache\vnccr3tx.jie\tpt1i54e.lhk\Design\Telerik.Windows.Controls.GanttView.Design.5.0.dll':
Exception has been thrown by the target of an invocation.
There was an exception when loading the design time assembly 'C:\Users\Andy\AppData\Local\Microsoft\VisualStudio\14.0\Designer\ShadowCache\rcuor1yw.trm\3pfbopk0.jq2\Design\Telerik.Windows.Controls.GridView.Design.5.0.dll':
Exception has been thrown by the target of an invocation.
There was an exception when loading the design time assembly 'C:\Users\Andy\AppData\Local\Microsoft\VisualStudio\14.0\Designer\ShadowCache\5dbl0ard.vq2\ryoz1p4c.qfj\Design\Telerik.Windows.Controls.Input.VisualStudio.Design.4.0.dll':
Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
Could not load file or assembly 'Telerik.Windows.Core.Design, Version=2016.3.1024.45, Culture=neutral, PublicKeyToken=5803cfa389c90ce7' or one of its dependencies. The system cannot find the file specified.
There was an exception when loading the design time assembly 'C:\Users\Andy\AppData\Local\Microsoft\VisualStudio\14.0\Designer\ShadowCache\1ezw2acw.w0d\41bkmvbl.kft\Design\Telerik.Windows.Controls.Pivot.Design.5.0.dll':
Exception has been thrown by the target of an invocation.
There was an exception when loading the design time assembly 'C:\Users\Andy\AppData\Local\Microsoft\VisualStudio\14.0\Designer\ShadowCache\p2ywzsl3.fxy\22f0oc1j.nsf\Design\Telerik.Windows.Controls.PivotFieldList.Design.5.0.dll':
Exception has been thrown by the target of an invocation.

Available in LIB version 2016.3.1121, it will be also available in the 2017 R1 release.
Completed
Last Updated: 16 Oct 2018 12:12 by ADMIN
The issue is also observable in the Outlook project template as well - in the NewEmailWindow. As a workaround, the ScreenTip can be removed by deleting the following code:
telerik:ScreenTip.Icon="{telerik:IconResource IconRelativePath=FontDialog.png,IconSources={StaticResource IconSources}}"  

Fix available in R3 2018 SP1 release.
Unplanned
Last Updated: 04 Jan 2017 13:10 by ADMIN
InvalidProjectFileException is thrown when ApiAnalyzer cannot find the file Microsoft.VisualStudio.ServiceModel.targets referenced from a WPF project.
Completed
Last Updated: 13 Feb 2019 12:18 by ADMIN
For example, when DateTimePicker.FlowDirection=RightToLeft, the CalendarIcon is inverted [Windwos8, Greeen, Office2013 etc. themes].
Declined
Last Updated: 17 Jan 2017 09:36 by ADMIN
Created by: Sherry
Comments: 1
Category: UI for WPF
Type: Bug Report
0
The problem is happening with Rad Docking in X1 Yoga Thinkpad laptop. The problem is so that when launching the pane in Raddocking then the pane opens up outside the window. This is happening even if the window is not near to the border of the screen. Video and the same project attached.
Completed
Last Updated: 15 Feb 2017 09:04 by ADMIN
Available in LIB version 2017.1.213 , it will be also available in the R1 2017 SP1 Release.
Declined
Last Updated: 15 May 2017 15:57 by ADMIN
Created by: Kevin
Comments: 2
Category: UI for WPF
Type: Feature Request
0
Currently if a column is bound to a field of type DateTimeOffSet it is not displayed using the culture like DateTime is. It would be nice if this is supported in the future