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
Completed
Last Updated: 11 Feb 2014 13:56 by ADMIN
To reproduce :
Create a self-referencing hierarchy, bind it to a BindingList and delete the row with either the delete button or from the context menu and click the deleted item. 
Workaround :
Find the object that has to be deleted, hide the selected row and remove the found object from the data source.
void radGridView1_UserDeletingRow(object sender, GridViewRowCancelEventArgs e)
{
    e.Cancel = true;
    int id = int.Parse(e.Rows[0].Cells["Id"].Value.ToString());
    var human = this.humans.FirstOrDefault(x => x.Id == id);
    if (human != null)
    {
        this.radGridView1.SelectedRows[0].IsVisible = false;
        this.humans.Remove(human);
    }
}
Completed
Last Updated: 11 Feb 2014 13:53 by ADMIN
You should use the ticket project in order to reproduce the issue.
Completed
Last Updated: 11 Feb 2014 13:49 by ADMIN
1. Create a new project with RadGridView.
2. Setup self-referencing hierarchy with 1000 rows and 14 columns.
3. Run the project.
4. Scroll up and down several times.
5. Resize the window.
6. Scroll up and down again.
7. RadGridView will hang.
Completed
Last Updated: 11 Feb 2014 13:49 by Jesse Dyck
Currently the Excel-Like filtering popup displays all values regardless if other columns contain filter expressions.

Deleted as a duplicate of http://teampulse.telerik.com/view#item/96230
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();
}