Completed
Last Updated: 29 Jun 2016 14:30 by ADMIN
Completed
Last Updated: 28 Jun 2016 15:09 by ADMIN
Completed
Last Updated: 28 Jun 2016 15:02 by ADMIN
ADMIN
Created by: Dimitrina
Comments: 0
Category: GridView
Type: Bug Report
0
WPF Controls Samples -> GridView with Data Virtualization -> Edit UnitPrice and press Enter -> press ESC -> press Control+End.

Workaround: press ESC one more time or commit the edit before pressing  Control+End.
* works fine with QueryableCollectionView.
Completed
Last Updated: 21 Jun 2016 06:24 by ADMIN
When a SortDesciptor is applied and items are modified, the selection behaves inconsistently:

1. If an item is modified, so it's position needs to be changed according to the sorting descriptor, it will be removed from the SelectedItems.
2. If an item is modified, but it's position should remain the same, it remains in the SelectedItems collection.
2a. If IsSynchronizedWithCurrentItem item is set to true and the position should remain the same, the item is removed from the SelectedItems and the one that goes in the same position is added to the collection.

Workaround is to add the item back to the SelectedItems collection when RowEdit ends.

private void clubsGrid_RowEditEnded(object sender, GridViewRowEditEndedEventArgs e)
{
    (e.Source as RadGridView).SelectedItems.Add(e.NewData as Club);
}
Declined
Last Updated: 16 Jun 2016 07:46 by ADMIN
Completed
Last Updated: 15 Jun 2016 07:06 by ADMIN
ADMIN
Created by: Dimitrina
Comments: 3
Category: GridView
Type: Bug Report
0

			
Completed
Last Updated: 14 Jun 2016 13:10 by Rutger Kars
ADMIN
Created by: Nick
Comments: 3
Category: GridView
Type: Bug Report
0

			
Declined
Last Updated: 13 Jun 2016 16:39 by ADMIN
ValidationErrorHandler does not get invoked when validating in view mode and System.ComponentModel.INotifyDataErrorInfo interface is implemented.
Completed
Last Updated: 13 Jun 2016 16:38 by ADMIN
New row in Bottom position is not visible in the child grid when the grid has no items
Completed
Last Updated: 13 Jun 2016 16:35 by ADMIN
HeaderCheckBoxStyle of GridViewSelectColumn returns TextBlock as Header in Office2013 theme
Completed
Last Updated: 07 Jun 2016 13:25 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: GridView
Type: Feature Request
1

			
Completed
Last Updated: 06 Jun 2016 12:18 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Bug Report
1

			
Completed
Last Updated: 02 Jun 2016 15:03 by ADMIN
Completed
Last Updated: 02 Jun 2016 11:19 by ADMIN
Completed
Last Updated: 01 Jun 2016 13:27 by ADMIN
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: 13 May 2016 13:43 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Bug Report
0
The issue is reproduced only with GroupRenderMode="Flat".