A selection in RadListBox, RadColorPaletteVIew, RadTreeView. RadGridView etc. cannot be made with touch gestures when the control is inside a ScrollViewer.
Reason for declination:
This is not a bug in the touch logic of the controls. The selection does not work because the manipulations of the ScrollViewer are enabled and the scroller captures the touch and marks the touch events as handled, leaving the ScrollViewer the only element to receive touch events. There are at least two possible solutions for this.
1.If you have access to the ScrollViewer, you can set attached TouchManager.ScrollViewerSwipeMode for the ScrollViewer to Self.
<ScrollViewer telerik:TouchManager.ScrollViewerSwipeMode="Self" />
2. If you do not have access to the ScrollViewer, you can use a combination of two attached properties, for the elements inside the scroller. The two properties are two of the attached TouchManager properties - TouchMode and ScrollViewerSwipeMode.
<ScrollViewer>
...
<telerik:RadCartesianChart telerik:TouchManager.TouchMode="Locked" telerik:TouchManager.ScrollViewerSwipeMode="Parent" />
In case table cell doesn't have background directly applied it should inherit the background of its parent table. This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190064 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190063 Please use the new item for commenting, voting and subscribing instead of this one.
At this point only styling through CSS is supported. The below code does not align the paragraph to the center
string import = "<html><body><p align=\"center\">centered??</p></body></html>";
RadFlowDocument document = provider.Import(import);
This item is migrated to the Telerik Document Processing portal:
http://feedback.telerik.com/Project/184/Feedback/Details/190062
Please use the new item for commenting, voting and subscribing instead of this one.
Add API to get the list of ranges to which a defined name refers. Example: List<CellRange> ranges = workbook.Names["definedName"].Ranges; CellSelection selection = worksheet.Cells[ranges]; This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190061 Please use the new item for commenting, voting and subscribing instead of this one.
While eventToCommand works it is verbose and somewhat of a hack. I would really to see better MVVM support by having a command property on all of the controls for all events
The layout grid in RadDiagram is a little lacking and it would be a lot more powerful if it supported a similar layout grid to Adobe Illustrator. The features of interest are: Grid Subdivisions - You specify the gridsize as currently, say 8px, but then you can also specify a number of subdivisions, say 2. This will split the 8x8px grid cell into four 4x4px grid cells, and allow snapping to the 4x4px grid cells. Grid to back/front - allow the grid to be overlaid on top or behind the diagram so that you can optionally see the grid all the time. See attached diagram. Thanks Reason for closing / declining The mentioned cells can be controlled with attached properties of the BackgroundGrid and BackgroundPageGrid. Please check out these articles: http://docs.telerik.com/devtools/wpf/controls/raddiagram/styles-and-templates/styling-appearance.html http://docs.telerik.com/devtools/wpf/controls/raddiagram/features/printing#pages-preview-canvas To move these grids on top of the shapes you need to edit the default template of the RadDiagram and reorder the Grids in XAML.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190060 Please use the new item for commenting, voting and subscribing instead of this one.
The feature will be available in our official release Q1 2016.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190059 Please use the new item for commenting, voting and subscribing instead of this one.
The fix will be available in our next LIB release (v. 2015.03.1005).
The feature will be available in our official release Q1 2016.
The fix will be available in our latest LIB release (v. 2015.02.0803).
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190058 Please use the new item for commenting, voting and subscribing instead of this one.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190057 Please use the new item for commenting, voting and subscribing instead of this one.
From a custom function which inherit from FunctionBase it's possible to return some constant expressions like StringExpression or BoolExpression. But It's impossible to return a reference to a Cell or CellRange which will be used by another function by example or which will automatically update it's result. There is no public constructor.
For the current wave of new Win10 UIs it would be handy to have a new Control like the Windows 10 Splitview available in WPF. See: https://msdn.microsoft.com/library/windows/apps/windows.ui.xaml.controls.splitview.aspx
Please provide something like the new RelativePanel-Control from Windows 10 UWP for WPF. See: https://msdn.microsoft.com/en-us/library/windows/apps/windows.ui.xaml.controls.relativepanel.aspx