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".
Completed
Last Updated: 13 May 2016 10:46 by ADMIN
Completed
Last Updated: 11 May 2016 14:20 by Tetsu
Completed
Last Updated: 25 Apr 2016 12:29 by ADMIN
The reason for the performance issues is the size of the ItemsSource for the combo column and the internal lookup logic.

A new IsLightweightModeEnabled property of GridViewComboBoxColumn will be introduced with R2 2016. Its default value is False. 
When set to True, the new lightened lookup logic is triggered, thus the performance of the column is significantly increased.
Completed
Last Updated: 25 Apr 2016 09:19 by Milan
Completed
Last Updated: 25 Apr 2016 09:16 by ADMIN
With R2 2016 RadGridView will introduce ValidationType property that indicates what type of validation input should be processed(INotifyDataErrorInfo, IDataErrorInfo, DataAnnotations).
Completed
Last Updated: 25 Apr 2016 08:09 by ADMIN
With R2 2016 GridViewComboBoxColumn will expose a property IsLightweightModeEnabled. Setting the property to True should resolve the problem.