Completed
Last Updated: 20 Feb 2014 15:09 by ADMIN
After the delete, the item is removed from the BindingList, but it still appears in the RadGridView (or deleted a wrong item). The binding doesn't trigger the change in the UI/View.
Completed
Last Updated: 20 Feb 2014 15:09 by ADMIN
FIX. RadGridView - cursor does not work properly, when cursor has value "Cursors.SizeWE" and mouse is moving over GroupPanelElement.

Steps to reproduce:
1. On a gridview make sure that a column in grouped.
2. Place your mouse on a column split just below the grouped column.
3. The cursor icon changes to a SizeWE icon to let you know that you can resize the column, This is normal.
4. Now, move the mouse (with the cursor icon = SizeWE) to the grouped column just above.
5. Now the cusor gets stucked with this SizeWE icon and never goes away on this grid. Wathever you do now the icon stays showing as a SizeWE icon.

Work Around - create custom grid behavior and override OnMouseMove method.

    public class CustomGridBehavior : BaseGridBehavior 
    {
        public override bool OnMouseMove(MouseEventArgs e)
        {
             base.OnMouseMove(e);

             GridTableElement table = this.GetGridTableElementAtPoint(e.Location);

             if (table == null)
             {
                 this.GridViewElement.ElementTree.Control.Cursor = Cursors.Default;
                 return false;
             }

             return false;
        }
    }
Completed
Last Updated: 20 Feb 2014 15:08 by ADMIN
Steps to reproduce:

1. Addd a numeric (decimal) column to a grid
2. Enable filtering 
3. Select 'Greater Than' filter
4. Enter '0' in the Spin Editor that appears

You will see that no filtering occurs. Enter any other digit instead of 0 and filtering is performed.
Declined
Last Updated: 20 Feb 2014 11:08 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: GridView
Type: Feature Request
3
We should consider the Display attribute when using business objects as data source in RadGridView.
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.
Declined
Last Updated: 20 Feb 2014 09:52 by ADMIN
ADD. RadGridView - SelectLastAddedRow should work in scenarios when user adds row too, not only by adding rows from the datasource.
Comment - the property is intended to work only for added rows in the RadGridView DataSource. For the rest of the cases, the cases, the UserAddedRow event should be handled.
Declined
Last Updated: 20 Feb 2014 09:51 by ADMIN
Steps to reproduce:
1. Add a grid to a form and make it read only
2. Add a masked box column and set the mask
3. Add some data and run the project
You will see that the mask is not applied to the values in the mask box column
Comment: This is not an issue.  The mask is applied after editing the text with RadMaskedEditBox, in read-only mode there is no masked editor created. You should use the conversion layer in RadGridView to solve the issue. Check the GridView >> Manipulated Data >> Convert Values example from our demo application.
Completed
Last Updated: 13 Feb 2014 13:23 by Jesse Dyck
Horizontal scroll bar should appear when auto size columns mode is enabled and columns has minimum width that cause the total width of the columns to be more that the visible area width.
Completed
Last Updated: 13 Feb 2014 13:15 by Jesse Dyck
Filtering in self-reference hierarchy should be performed over the rows from all levels
Completed
Last Updated: 13 Feb 2014 13:15 by Jesse Dyck
ADMIN
Created by: Julian Benkov
Comments: 1
Category: GridView
Type: Bug Report
7
steps to reproduce: 

1- Apply filter in a date column by choosing Between. 

2- Leave default settings (change dates) and confirm 

3- Save layout 

4- Close the form 

5- Open the form and load the layout 

forum: http://www.telerik.com/community/forums/winforms/gridview/save-load-layout-issue.aspx#1475412 
Completed
Last Updated: 13 Feb 2014 09:06 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Feature Request
0
Adding a column to the RadGridView datasouce (DataSet) does not reflect in RadGridView.
Completed
Last Updated: 13 Feb 2014 09:05 by Svetlin
When you set the data source of the grid to null in self-reference hierarchy, the exception has been thrown.
Completed
Last Updated: 13 Feb 2014 09:03 by ADMIN
steps to reproduce the bug:

1. run HtmlViewTest.exe
2. don't re-size the form (keep the horizontal scroll bar visible in grid)
3. keep editing column4 several times
4. System.NullReferenceException will be thrown
Completed
Last Updated: 13 Feb 2014 09:01 by Svetlin
BestFitColumn does not calculate the size of the first column in self-referencing appropriately. Also if you perform the operation twice, the expander signs will disappear.
Completed
Last Updated: 13 Feb 2014 08:43 by Svetlin
If you sort a column by performing mouse left button click and open the excel-like filtering dialog, ArgumentOutOfRangeException is thrown.
Completed
Last Updated: 13 Feb 2014 08:41 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: GridView
Type: Bug Report
0
Delete from BindingList lists bound to master and child templates. Invalid batch operation
Completed
Last Updated: 12 Feb 2014 10:34 by ADMIN
To reproduce: 
 void radGridView1_ViewCellFormatting(object sender, Telerik.WinControls.UI.CellFormattingEventArgs e)
        {
            GridFilterCellElement filterCell = e.CellElement as GridFilterCellElement;
            if (filterCell != null)
     
Completed
Last Updated: 11 Feb 2014 15:57 by ADMIN
FIX. RadGridView - the PropertyName from the arguments of the RowsChanged event is null, while it should display the changed field name
Completed
Last Updated: 11 Feb 2014 15:55 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: GridView
Type: Bug Report
5
To reproduce: 
For i = 0 To Me.RadGridView1.Columns.Count - 1
            Me.RadGridView1.Columns(i).AutoSizeMode = Telerik.WinControls.UI.BestFitColumnMode.HeaderCells
Completed
Last Updated: 11 Feb 2014 15:54 by ADMIN
IMPROVE. RadGridView - add ability to change and customize the font (bold, italic, etc) in the ConditionalFormattingForm