Unplanned
Last Updated: 06 Dec 2016 15:19 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: GridView
Type: Feature Request
8

			
Unplanned
Last Updated: 17 Nov 2016 15:56 by ADMIN
Unplanned
Last Updated: 20 Jun 2017 11:33 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Feature Request
0

			
Unplanned
Last Updated: 03 Nov 2016 15:23 by ADMIN
Unplanned
Last Updated: 31 Oct 2016 12:52 by ADMIN
Unplanned
Last Updated: 24 Oct 2016 11:07 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 1
Category: GridView
Type: Feature Request
3

			
Unplanned
Last Updated: 26 Sep 2023 19:08 by alex
ADMIN
Created by: Stefan Nenchev
Comments: 2
Category: GridView
Type: Feature Request
6

			
Unplanned
Last Updated: 04 Apr 2017 07:46 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: GridView
Type: Bug Report
0

			
Unplanned
Last Updated: 12 Sep 2016 15:38 by ADMIN
A workaround for the issue is to use RadObservableCollection as a source collection. Before the items are added to it, call the its SuspendNotifications method. Respectively, after that call the ResumeNotifications one. 

Another approach would be to populate the items through the AddRange method of the collection.
Unplanned
Last Updated: 17 Jul 2017 09:15 by ADMIN
To work this around you can set the EnableColumnGroupsVirtualization to False.

Alternatively you can change the FrozenColumnCount before adding the columns, and reset it once the process is done. For example:

gridTriffDetails.FrozenColumnCount = 0;
 
gridTriffDetails.Columns.Add(newColumn);
gridTriffDetails.Columns.Add(newColumn1);
gridTriffDetails.Columns.Add(newColumn2);
 
gridTriffDetails.FrozenColumnCount = 1;
Unplanned
Last Updated: 11 Oct 2016 14:29 by ADMIN
Currently the new item's properties are validated before editing their values, which is not intuitive, especially for Required, MinLength etc. The correct behavior would suggest that validation should be applied only to "confirmed" property values.
Unplanned
Last Updated: 04 Jan 2017 07:25 by ADMIN
ADMIN
Created by: Ivan Ivanov
Comments: 0
Category: GridView
Type: Bug Report
0

			
Unplanned
Last Updated: 25 Aug 2016 08:19 by ADMIN
1.   Run the sample application.

2.   Scroll to the last item.

3.   Begin to resize the window. The direction is irrelevant. Only the horizontal scrollbar needs to be visible.

4.   Observe that in the beginning of the resizing, the scrollbar auto scrolls upwards a little and the last item is half hidden.
Unplanned
Last Updated: 12 Aug 2016 15:39 by ADMIN
Not all of the FilteringControl elements have automation IDs. This fact prevents the proper usage of some automation frameworks.
Unplanned
Last Updated: 09 Aug 2016 09:59 by ADMIN
ADMIN
Created by: Ivan Ivanov
Comments: 0
Category: GridView
Type: Feature Request
0

			
Unplanned
Last Updated: 09 Aug 2016 08:25 by ADMIN
ADMIN
Created by: Ivan Ivanov
Comments: 0
Category: GridView
Type: Feature Request
0

			
Unplanned
Last Updated: 08 Aug 2016 09:16 by ADMIN
Unplanned
Last Updated: 04 Jan 2017 07:21 by ADMIN
ADMIN
Created by: Yoan
Comments: 0
Category: GridView
Type: Feature Request
0

			
Unplanned
Last Updated: 03 Jan 2017 16:26 by ADMIN
Workaround: reused the cell element like this:
CreateCellElement(Telerik.Windows.Controls.GridView.GridViewCell cell, object dataItem)
{
    var button = cell.Content as Button;
    . . .
 
    return button;
}