Completed
Last Updated: 11 Feb 2014 13:48 by ADMIN
1. Drag a RadGridView to a form and dock it to fill the form.
2. Create and set a ColumnGroupsViewDefinition to the grid
3. Add data and run the project.
4. Resize the form and you will see that grid view layout would not look properly.
Also if your resize a column group only the first column in the group is resized while all others retain their widths.

Work around:
void radGridView1_SizeChanged(object sender, EventArgs e)
{
    this.InvalidateGridLayout();
}
 
private void InvalidateGridLayout()
{
    this.bllGridView1.TableElement.ViewElement.RowLayout.InvalidateLayout();
    this.bllGridView1.TableElement.InvalidateMeasure(true);
    this.bllGridView1.TableElement.UpdateLayout();
}
Completed
Last Updated: 17 Feb 2012 10:33 by ADMIN
Currently one can only set theme of the RadPrintPreviewDialog.
Completed
Last Updated: 17 Feb 2012 09:32 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: GridView
Type: Bug Report
0
1. Create a new project with RadGridView and setup binding
2. Enable filtering
3. On a button click call the PrintPreview method
4. Run the application and click the button
5. Close the print dialog and click on a cell
Completed
Last Updated: 17 Feb 2012 04:57 by ADMIN
Selfreference:
Item.ID
Item.Propertys.ParentID 

If Parent ID == null then since the new Update I will recive :


bei Telerik.WinControls.UI.GridViewSelfReferenceComparer.Compare(GridViewRowInfo x, GridViewRowInfo y) 

bei Telerik.Collections.Generic.AvlTree`1.LastIndex(ValueT value) 

bei Telerik.Collections.Generic.AvlTree`1.InsertWithDuplicates(ValueT value) 

bei Telerik.Collections.Generic.AvlTree`1.Add(ValueT item) 

bei Telerik.WinControls.UI.GridViewSelfReferenceDataProvider.Refresh() 

bei Telerik.WinControls.UI.GridViewTemplate.Telerik.WinControls.Data.IDataItemSource.Initialize() 

bei Telerik.WinControls.Data.RadListSource`1.Initialize() 

bei Telerik.WinControls.Data.RadListSource`1.Bind(Object dataSource, String dataMember) 

bei Telerik.WinControls.Data.RadListSource`1.set_DataSource(Object value) 

bei Telerik.WinControls.UI.GridViewTemplate.set_DataSource(Object value) 

bei Telerik.WinControls.UI.RadGridView.set_DataSource(Object value) 

bei LocalSimulation.Form1.worker_RunWorkerCompleted(Object sender, RunWorkerCompletedEventArgs e) in D:\Programming\REPOSITORY\trunk\AAARISK WEBAPP\LocalSimulation\Form1.cs:Zeile 142. 

bei System.ComponentModel.BackgroundWorker.OnRunWorkerCompleted(RunWorkerCompletedEventArgs e) 

bei System.ComponentModel.BackgroundWorker.AsyncOperationCompleted(Object arg) 



So I changed Parent = null to Parent =0 and it works .
Completed
Last Updated: 14 Feb 2012 08:36 by ADMIN
ADD. RadGridView - add support for scrolling the grid while dragging in SelectionMode = CellSelect
Completed
Last Updated: 11 Feb 2015 14:37 by ADMIN
ADD. RadGridView - add ability to move the column with the expanders to different position then the first one

Resolution: 
Set the SelfReferenceExpanderColumn property of the MasterTemplate to the preferred column. Here is the code snippet: 
radGridView1.MasterTemplate.SelfReferenceExpanderColumn = this.radGridView1.MasterTemplate.Columns[4];
Completed
Last Updated: 10 Feb 2012 05:07 by Svetlin
1. The RowsChanging event is not fired when rows are deleting in multi-selection mode.
2. The last selected row is already deleted in the RowsChanging event in multi-cell selection mode.
Completed
Last Updated: 10 Feb 2012 04:55 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
0
The synchronization mechanism is invalid when sorting is applied and notification was received from external data source object.
Completed
Last Updated: 08 Feb 2012 07:22 by Svetlin
Scrolling by mouse wheel in hierarchical RadGridView causes exception when Microsoft IntelliPoint is installed and configured for 25 vertical scrolling speed.
Completed
Last Updated: 07 Feb 2012 07:46 by ADMIN
FIX. RadGridView - UserAddedRow is not fired when the AddNewRowPosition is Bottom and you tab through the cells to add the row. The result is that the row is added but the event is not fired.
Completed
Last Updated: 01 Mar 2012 10:27 by Jesse Dyck
ADMIN
Created by: Jack
Comments: 2
Category: GridView
Type: Feature Request
6
Currently there is no way to sort group rows in RadGridView.
Completed
Last Updated: 17 Jun 2015 16:07 by Svetlin
Completed
Last Updated: 01 Feb 2012 07:31 by ADMIN
Completed
Last Updated: 31 Jan 2012 13:08 by ADMIN
Gridview doesn't update binding source current position after sorting and selecting row with the same offset position from the begining
Completed
Last Updated: 31 Jan 2012 07:33 by ADMIN
Chechbox editor issue with value update and BeginEdit operation for next cell
Completed
Last Updated: 31 Jan 2012 07:00 by Svetlin
If all rows are expanded in hierarchy, the last scroll position of the vertical scroll bar does not show all available rows from the child template.
Completed
Last Updated: 27 Oct 2015 12:45 by Svetlin
Completed
Last Updated: 30 Jan 2012 04:35 by Svetlin
Exception is thrown if the data source of second template is changed and rows are expanded in hierarchy.
Completed
Last Updated: 27 Jan 2012 10:11 by Svetlin
The first row overlaps the GridTableElement's top border when group panel and column's headers are invisible.
Declined
Last Updated: 20 Feb 2014 09:56 by Svetlin
The DefaultValueAttribute of Format and FormatInfo properties of GridViewDataColumn causes exceptions when load layout is performed.
Comment: this is an issue inside .Net framework.