Completed
Last Updated: 13 Jul 2016 12:07 by ADMIN
To work around the issue, set the EnableColumnGroupsVirtualization property of RadGridView to True.
Completed
Last Updated: 08 Jan 2016 11:39 by ADMIN
Declined
Last Updated: 04 Oct 2016 07:31 by ADMIN
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);
}
Completed
Last Updated: 13 Jul 2016 10:32 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: GridView
Type: Bug Report
1

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

			
Unplanned
Last Updated: 03 Aug 2016 13:09 by ARKADIY
Unplanned
Last Updated: 31 Jan 2020 14:39 by ADMIN
Completed
Last Updated: 22 Aug 2016 15:25 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Bug Report
1

			
Completed
Last Updated: 07 Mar 2016 09:46 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: GridView
Type: Bug Report
1

			
Completed
Last Updated: 15 Feb 2018 15:12 by ADMIN
The issue can be solved with the help of the new added IsExpandableBinding property.
Completed
Last Updated: 07 Jun 2016 13:25 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: GridView
Type: Feature Request
1

			
Unplanned
Last Updated: 03 Jan 2017 21:13 by ADMIN
Completed
Last Updated: 29 Feb 2016 10:10 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: GridView
Type: Bug Report
1
Pasting in empty RadGridView is not possible.
Completed
Last Updated: 01 Apr 2016 15:46 by ADMIN
The problem should be resolved with LIB version 2016.1.404.
Completed
Last Updated: 13 Jul 2016 11:30 by ADMIN
Completed
Last Updated: 24 Mar 2016 14:28 by ADMIN
Declined
Last Updated: 18 Jul 2016 10:53 by ADMIN
Using Telerik GridView. If a cell is wrapped multi-lines (the more lines the easier to reproduce), and the grid has both vertical and horizontal scrollbars. 
1) Fill one of the cells with a bunch of text in which will cause multi-line text wrapping of within that column.
2) Set focus to a different grid row
3) scroll the vertical scrollbar all the way to the bottom
4) scroll the horizontal scrollbar far enough away to lose visual of the Column
5) scroll the horizontal bar back to the right
Result: the vertical scrollbar will jump.
Expected: The scrollbars should not jump like this as it does not happen when the cell does not contain word-wrapped text.