Completed
Last Updated: 24 Feb 2012 04:35 by ADMIN
1. Create a new project and open a form at design time
2. Drop RadGridView on the form
3. Add some columns
4. Open the Columns collection for edit
5. Select a column
6. Select the FilterDescriptor property and try to show its dialog
Completed
Last Updated: 28 May 2015 06:47 by Svetlin
Workaround: use the following custom editor:

using System;
using Telerik.WinControls.UI;

namespace radGridView_MultipleFilters
{
    public class CustomRadMultiColumnComboBoxElement : RadMultiColumnComboBoxElement
    {
        protected override Type ThemeEffectiveType
        {
            get
            {
                return typeof(RadMultiColumnComboBoxElement);
            }
        }

        public GridViewDataColumn DisplayColumn
        {
            get
            {
                string displayMember = this.DisplayMember;
                if (string.IsNullOrEmpty(displayMember))
                {
                    for (int i = 0; i < this.MultiColumnPopupForm.EditorControl.Columns.Count; i++)
                    {
                        if (this.MultiColumnPopupForm.EditorControl.Columns[i].DataType == typeof(string))
                        {
                            displayMember = this.MultiColumnPopupForm.EditorControl.Columns[i].FieldName;
                            break;
                        }
                    }
                    if (this.MultiColumnPopupForm.EditorControl.Columns.Count > 0
                        && string.IsNullOrEmpty(displayMember))
                    {
                        displayMember = this.MultiColumnPopupForm.EditorControl.Columns[0].FieldName;
                    }
                }
                DisplayMember = displayMember;
                GridViewDataColumn[] columns = this.MultiColumnPopupForm.EditorControl.Columns.GetColumnByFieldName(displayMember);
                if (columns.Length > 0)
                {
                    return columns[0];
                }
                return null;
            }
        }

        protected override object FindItemExact(string text)
        {
            int index = this.FindItemIndexExact(text);

            if (index != -1)
            {
                return this.EditorControl.ChildRows[index];
            }

            return null;
        }

        protected override void SetActiveItem(string text)
        {
            int rowIndex = this.FindItemIndexExact(text);

            if (rowIndex != -1)
            {
                this.EditorControl.CurrentRow = this.EditorControl.ChildRows[rowIndex];
                this.Select(this.Text.Length, 0);
            }
        }

        protected override int FindItemIndexExact(string text)
        {
            GridViewRowInfo rowInfo = this.FindItemExact(text, this.DisplayColumn.Name);

            if (rowInfo != null)
            {
                return rowInfo.Index;
            }

            return -1;
        }

        protected override GridViewRowInfo FindItemExact(string text, string field)
        {
            GridViewDataColumn[] foundColumns = this.EditorControl.Columns.GetColumnByFieldName(field);
            if (foundColumns.Length > 0)
            {
                for (int i = 0; i < this.EditorControl.ChildRows.Count; i++)
                {
                    object element =
                        this.EditorControl.ChildRows[i].Cells[foundColumns[0].Name].Value;

                    string elementText = Convert.ToString(element);

                    if (!string.IsNullOrEmpty(elementText) && elementText.Equals(text,
                        this.EditorControl.MasterTemplate.CaseSensitive ? StringComparison.InvariantCulture : StringComparison.InvariantCultureIgnoreCase))
                    {
                        return this.EditorControl.ChildRows[i];
                    }
                }
            }
            return null;
        }
    }
}
Completed
Last Updated: 05 Jun 2015 15:05 by Svetlin
When the UserDeletingRow and UserDeletedRow are fired in multi cell selection mode, the event arguments should contains the rows of the selected cells.
Completed
Last Updated: 22 Feb 2012 03:17 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Feature Request
2
ADD. RadTimePicker localization provider
Completed
Last Updated: 21 Feb 2012 11:56 by ADMIN
This issue appears when using hierarchy and the row height is customized.
Completed
Last Updated: 21 Feb 2012 04:10 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
0
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.
Completed
Last Updated: 20 Aug 2015 14:43 by ADMIN
Wrapping text in ColumnsGroupViewDefinition does not affect the size of the cells.
Completed
Last Updated: 21 Feb 2012 04:00 by ADMIN
FIX. RadGridView - when AlternatingRowColors is enabled and the grid is sorted the colorized rows are wrong.
Declined
Last Updated: 04 Jun 2014 10:35 by ADMIN
Makes RadGridView to be thread safe by using from BackgroundWorker
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.