Unplanned
Last Updated: 31 Oct 2016 12:52 by ADMIN
Declined
Last Updated: 28 Oct 2016 12:39 by ADMIN
Completed
Last Updated: 25 Oct 2016 10:24 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: GridView
Type: Bug Report
1

			
Unplanned
Last Updated: 24 Oct 2016 11:07 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 1
Category: GridView
Type: Feature Request
3

			
Declined
Last Updated: 21 Oct 2016 13:16 by ADMIN
Right now, if you programmatically increase the RadGridView's font size, the columns get bigger to accommodate. So far, so good. But if you then make the font size smaller, the columns stay the same large-font width. 

Further, double-clicking the gridsplitter that separates the columns after the above procedure doesn't resize the column like it would if you'd manually resized the column and then double-clicking the gridsplitter - instead, nothing happens.

Finally, it would be nice to have a programmatic interface to autosize the columns, something like

MyGrid.Columns(0).AutoSize()

Thanks!
Declined
Last Updated: 20 Oct 2016 12:12 by ADMIN
Created by: Combinations
Comments: 1
Category: GridView
Type: Bug Report
1
I have a custom column based on GridViewBoundColumnBase. In it I override GetCellContent. If I bind the column to a nested property (MyProperty.SubProperty), what I return in GetCellContent is not shown, instead the nested property's "raw" value is shown.

Attached is a project illustrating the issue.
Completed
Last Updated: 20 Oct 2016 10:35 by ADMIN
Completed
Last Updated: 19 Oct 2016 14:56 by Chris
InvalidOperationException, when sorting or filtering GridView and an observable immutable collection is used in a multithread application.
Completed
Last Updated: 19 Oct 2016 06:08 by ADMIN
Completed
Last Updated: 12 Oct 2016 11:54 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 1
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.
Declined
Last Updated: 04 Oct 2016 07:31 by ADMIN
Completed
Last Updated: 03 Oct 2016 04:57 by ADMIN
Completed
Last Updated: 21 Sep 2016 09:04 by ADMIN
GridViewColumn's IsVisible Binding breaks when you create an instance of a usercontrol.
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.