Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Vertical scrolling in HtmlViewDefinition is wrong when the RowSpacing property set to value greater that zero

The same issue occurs in ColumnsGroupViewDefinition (See Ticket ID: 410535)
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Created by: Svetlin
Comments: 0
Category: GridView
Type: Feature Request
2
RadGridView should be able to filter by enum values.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
If the DPI setting of the screen is 120, the layout of the Conditional formatting form is broken. One can't see the buttons to apply his/her preferences.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: GridView
Type: Bug Report
0
When a user enters some data in a cell, then clicks in an empty part of RadGridView and finally clicks a button that calls the Update on the table adapter, no changes are committed to the DB. 
However, this case should be covered and there should be changes in the DataSet
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: GridView
Type: Bug Report
0
When you set the DecimalPlaces property of GridViewDecimalColumn, this setting is not reflected on the GridSpinEditor
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: GridView
Type: Bug Report
0
Comment; We still don't have such property in the Templates.
There should be AllowMultiColumnSorting proeprty at GridViewTemplate.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
If the dropdownlist editor is opened and closed quickly, it produces an exception. The timer of the RadListElement should be reset when the editor is closed and then reopened.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
If you have an object that has a property that returns another type of object and you want to choose the value of this property by getting it from a GridViewComboBoxColumn, you will notice that currently this is not possible.
COMMENT: This scenario is not possible. However we added support for subproperty binding in GridViewComboBoxColumn. For example:
FieldName = "MatrixParameter.ID"
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Manually generated hierarchy does not contain data if the Relation is defined before setting the data source to the parent level.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
If your screen scaling is set to 125% the location of the editors that appear in the Composite Filter Form is not correct.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Let's have a RadGridView that is RightToLeft.Yes with at least three columns. In the CellFormatting event set RightToLeft.No to the CellElements that belong to the middle column. Now start dragging the last column (first in RightToLeft.Yes) so that it becomes bigger and its size goes beyond what RadGridView gives as available estate area. You will notice that the CellElements that are RightToLeft.No go in the opposite direction.

Resolution: Currently, the correct way to achieve a grid with RightToLeft.Yes while some of its cells are RightToLeft.No is to use a custom column with custom cells:

 public class MyGridViewDecimalColumn : GridViewDecimalColumn
    {
        public MyGridViewDecimalColumn()
            : base()
        {

        }

        public MyGridViewDecimalColumn(string fieldName)
            : base(fieldName)
        {
        }

        public MyGridViewDecimalColumn(string fieldName, string uniqueName)
            : base(uniqueName, fieldName)
        {
        }

        public override Type GetCellType(GridViewRowInfo row)
        {
            if (row is GridViewDataRowInfo)
            {
                return typeof(MyGridDecimalCellElement);
            }

            return base.GetCellType(row);
        }
    }

    public class MyGridDecimalCellElement : GridDataCellElement
    {
        public MyGridDecimalCellElement(GridViewColumn col, GridRowElement row)
            : base(col, row)
        {

        }

        protected override Type ThemeEffectiveType
        {
            get
            {
                return typeof(GridDataCellElement);
            }
        }

        protected override Telerik.WinControls.Primitives.TextParams CreateTextParams()
        {
            Telerik.WinControls.Primitives.TextParams parameters = base.CreateTextParams();
            parameters.rightToLeft = false;
            return parameters;
        }

        public override bool IsCompatible(GridViewColumn data, object context)
        {
            return base.IsCompatible(data, context) && data is GridViewDecimalColumn;
        }
    }
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: GridView
Type: Feature Request
1
The should be able to operate with a threestate checkbox in RadGridView.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: GridView
Type: Feature Request
1
It will be a nice addition to the GridViewImageColumn if we add an ImageAlignment property.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: GridView
Type: Feature Request
11
One may want to perform a search operatior over the records of RadGridView instead of filtering them. The search should be incremental and should scroll to the first position that contains a record that matches the search criteria.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Column Chooser form's BackColor cannot be set trough Theme.
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
RadGrid's HierarchyRowTraverser throws an exception when all levels are expanded and filter is applied
Please, tests with the attached project.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Run time error occurs when setting AutoSuggestMode to Suggest only in GridViewComboBoxColumn Editor
Steps to reproduce:

GridViewComboBoxColumn cmb = new GridViewComboBoxColumn(); 
cmb.Name = "Test"; 
cmb.HeaderText = "Test"; 
cmb.DataSource = dt;
cmb.ValueMember = "Id"; 
cmb.DisplayMember = "Name"; 
cmb.FieldName = "Test"; 
cmb.Width = 100;
radGridView1.Columns.Add(cmb);
radGridView1.Columns["Test"].ReadOnly = false;
radGridView1.Columns["Test"].IsVisible = true;
cmb.DropDownStyle = RadDropDownStyle.DropDown;
cmb.AutoCompleteMode = AutoCompleteMode.Suggest;
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
TAB navigation does not work properly with Grid TimePickerCell. The timepicker cell gets the focus only for a moment, and the grid immediately sets the focus to the next cell.

 public Form1()
 {
            radGridView1.Columns.Add(new GridViewDateTimeColumn());
            radGridView1.EditorRequired += new EditorRequiredEventHandler(radGridView1_EditorRequired);
    
 }

 void radGridView1_EditorRequired(object sender, EditorRequiredEventArgs e)
 {
      e.Editor = new GridTimePickerEditor();
  }
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
0
The following works;
	
GridGroupByExpression groupBy = new GridGroupByExpression();
groupBy.Expression = "[Status] format \"Current {0}: {1}\" Group By Status DESC";
this.fundsGrid.MasterGridViewTemplate.GroupByExpressions.Add(groupBy);

The following doesnt work

GridGroupByExpression groupBy = new GridGroupByExpression();
groupBy.Expression = "[Status] format \"Current {0}: {1}\" Group By Status desc";
this.fundsGrid.MasterGridViewTemplate.GroupByExpressions.Add(groupBy);
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
0
related to RadGridView AutoSizeRows property and layout logic for row height