Declined
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Vladimir Zagorski
Comments: 0
Category: GridView
Type: Bug Report
0
The grips on the scrollbar's thumb is blurred on 120dpi as well as some of the borders.

As it turns out, we hit a WPF specific problem with 120 DPI. The issue is similar to the following:
http://connect.microsoft.com/VisualStudio/feedback/details/798513/wpf-dpi-rendering-issues-with-two-borders
For the time being this issue is not addressed and most probably would not be fixed. 
Completed
Last Updated: 23 Jan 2017 06:50 by ADMIN
Provide option to enable changing the column display index when dragging group cell into the header row.

Available in the 2017 R1 Release (2017.1.117).
Completed
Last Updated: 30 May 2016 12:35 by Vesko
Let your data column have a cell style with DataTrigger which sets the Tooltip depending on the value:

<telerik:GridViewDataColumn.CellStyle>
    <Style TargetType="telerik:GridViewCell">
        <Style.Triggers>
            <DataTrigger Binding="{Binding StadiumCapacity}" Value="42055">
                <Setter Property="ToolTip" Value="THIS IS TOO SMALL" />
                <Setter Property="Background" Value="Red" />
            </DataTrigger>
        </Style.Triggers>
    </Style>
</telerik:GridViewDataColumn.CellStyle>

Initially, when the grid loads - the tooltips are set correctly. But if you edit a cell and change its value to 42055 then the background is set to Red (as expected), but the tooltip does not update.
Completed
Last Updated: 24 Sep 2018 15:16 by Bryan
Created by: Vesko
Comments: 2
Category: GridView
Type: Feature Request
11
Add an ability for the user to select a full column (the SelectionUnit should be Cell and the SelectionMode should be Multiple or Extended). 

Consider this behavior in regard with the sorting of the column.
Completed
Last Updated: 27 Oct 2014 12:44 by ADMIN
Created by: Vesko
Comments: 17
Category: GridView
Type: Feature Request
90
We would like to have the ability to merge cells vertically with same content. Consider to do the same horizontally.
Unplanned
Last Updated: 09 Aug 2016 06:43 by ADMIN
Add Option to disable autoBring into View the focused RadGridView unit.
Unplanned
Last Updated: 03 Aug 2016 13:13 by Paul Grothe
ADMIN
Created by: Yavor Georgiev
Comments: 2
Category: GridView
Type: Feature Request
4
Currently, when a user selects multiple rows, but skips a few, and then copies, the data in the Clipboard will look as if the selected rows were in an uninterrupted sequence. Unselected columns, on the other hand, leave a "hole" in the clipboard data. This
Declined
Last Updated: 13 Jul 2016 11:15 by ADMIN
ADMIN
Created by: Maya
Comments: 1
Category: GridView
Type: Bug Report
0
There are two different styles for the Validation Message - the Microsoft's and the Telerik's.
Declined
Last Updated: 21 Apr 2015 13:04 by ADMIN
ADMIN
Created by: Pavel Pavlov
Comments: 5
Category: GridView
Type: Bug Report
11
When you place a DataTrigger whithin a CellTemplate, it is being ignored by RadGridView for WPF

Workaround ( until fixed ) - set the ContentTemplate of the cell via Style in a static resource instead.