Completed
Last Updated: 15 Feb 2017 09:02 by ADMIN
Available in LIB version 2017.1.213 , it will be also available in the R1 2017 SP1 Release.
Declined
Last Updated: 28 Oct 2016 12:39 by ADMIN
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: 04 Jan 2017 07:25 by ADMIN
ADMIN
Created by: Ivan Ivanov
Comments: 0
Category: GridView
Type: Bug Report
0

			
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: 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;
Completed
Last Updated: 22 Nov 2018 09:20 by ADMIN
A workaround for the issue is to apply a 1px top Margin.

The fix for this issue is available with LIB (version 2018.3.1126) published on Monday, 26th November, 2018.
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;
}
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 Aug 2016 13:12 by Dev
When tabbing in grouped RadGridView placed in Grid with another visual element inside it, GroupRenderMode is set to Flat  and second group is not in ViewPort, selected row changed its state to Unfocused.
Unplanned
Last Updated: 03 Jan 2017 21:10 by ADMIN
Currently, within the LoadItems() method the items are being iterated directly, thus a second query to the database is triggered.  A separate list for this operation should be created.
Unplanned
Last Updated: 04 Jan 2017 07:22 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: GridView
Type: Feature Request
0

			
Unplanned
Last Updated: 17 Mar 2017 14:37 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 2
Category: GridView
Type: Bug Report
0

			
Completed
Last Updated: 16 Aug 2018 10:59 by ADMIN
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: 26 Nov 2015 15:19 by ADMIN
The problem should be resolved with lib version 2015.3.1130.