ADD. RadTimePicker localization provider
This issue appears when using hierarchy and the row height is customized.
When i press control-c at a gridviewcell and paste it to notepad or another telerik control it looks like this.if i paste it to excel it works fine.
Wrapping text in ColumnsGroupViewDefinition does not affect the size of the cells.
FIX. RadGridView - when AlternatingRowColors is enabled and the grid is sorted the colorized rows are wrong.
Makes RadGridView to be thread safe by using from BackgroundWorker
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(); }
Currently one can only set theme of the RadPrintPreviewDialog.
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
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 .
ADD. RadGridView - add support for scrolling the grid while dragging in SelectionMode = CellSelect
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];
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.
The synchronization mechanism is invalid when sorting is applied and notification was received from external data source object.
Scrolling by mouse wheel in hierarchical RadGridView causes exception when Microsoft IntelliPoint is installed and configured for 25 vertical scrolling speed.
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.
Currently there is no way to sort group rows in RadGridView.
Workaround: use the API of RadGridView to delete the row
Please view the attached project for details
Gridview doesn't update binding source current position after sorting and selecting row with the same offset position from the begining