Unplanned
Last Updated: 19 May 2025 09:01 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 2
Category: GridView
Type: Feature Request
9
The scenario which should be covered is selecting some data from Excel and pasting in the new row of RadGridView. This is an easy way for inserting data in the grid.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
ADD. RadGridView - add support for self-reference hierarchy for child levels as well
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
Unplanned
Last Updated: 13 Nov 2024 14:49 by ADMIN
Improve the sorting performance when having equal values in the column.
Unplanned
Last Updated: 15 Aug 2017 09:33 by Uwe
Consider the iTunes Artist mode grid
http://www.telerik.com/forums/itunes-like-grid
Unplanned
Last Updated: 29 Mar 2019 13:48 by ADMIN

How can I enter the Value "" (empty string) in the traditional filter system (not Excel like filter).

The grid does not seem to accept an empty string as an argument to "Equals" through the UI.

Ideally I would like to extend the standard filter menu in traditional filtering (and the filter operator drop down in custom filtering dialog) to contain operators "Is Empty" "Is Not Empty" and "Is Null Or Empty", "Is Not Null And Not Empty"

Regards

Erwin

Unplanned
Last Updated: 15 Aug 2017 09:36 by ADMIN
When the pencil icon is clicked the RowValidating event must be fired.

WORKAROUND:
1. When clicking the "pencil" icon, the current row is not changed, thus the RowValidating is not fired. A suitable event to cover this case is the CellValidating event which will be triggered when the "pencil" icon is clicked. 
2. When the pencil is clicked, save the grid's CurrentRow, set it to null and then set it back to the saved row. This will trigger the RowValidating event and the desired logic will be executed. The downside of this approach is that the event will be triggered twice, because we change the CurrentRow twice.


void radGridView1_MouseDown(object sender, MouseEventArgs e)
{
    GridRowHeaderCellElement rowHeader = radGridView1.ElementTree.GetElementAtPoint(e.Location) as GridRowHeaderCellElement;
    if (rowHeader != null)
    {
        GridViewRowInfo saveRow = radGridView1.CurrentRow;
        radGridView1.CurrentRow = null;
        radGridView1.CurrentRow = saveRow;
    }
}
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Improve RadGridViewDragDropService extensibility to perform visual drop indication over RadTreeView.
Unplanned
Last Updated: 04 Oct 2016 06:27 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: GridView
Type: Feature Request
3
Repeat the master template headers right after the end of an expanded detail template. The purpose is clarity for the end user.
Unplanned
Last Updated: 21 Nov 2016 12:31 by ADMIN
The specified format in the DisplayFormat attribute should be considered when automatically generating the GridViewDateTimeColumn.

public RadForm1()
{
    InitializeComponent();

    List<Item> items = new List<Item>();
    for (int i = 0; i < 5; i++)
    {
        items.Add(new Item(DateTime.Now.AddDays(i)));
    }

    this.radGridView1.DataSource = items;
    this.radGridView1.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
}

public class Item
{
    [System.ComponentModel.DisplayName("My Date")]
    [System.ComponentModel.DataAnnotations.DisplayFormat(DataFormatString = "{0:MM/dd/yyyy}")]
    public DateTime Date { get; set; }

    public Item(DateTime date)
    {
        this.Date = date;
    }
}
Unplanned
Last Updated: 19 May 2020 14:02 by ADMIN

Hello.

In my application, depending on the specific data in the grid I may want to warn a user who clicks on the header checkbox that changing all the values in that column may not be what he intends, allowing him to cancel out of the operation.  I haven't found a handler that gets called when clicking on the header checkbox that allows me to cancel the event.  How can I accomplish this?

Unplanned
Last Updated: 11 Nov 2024 13:36 by ADMIN
Created by: Nadya
Comments: 0
Category: GridView
Type: Feature Request
3
 Add support for UI Automation in RadGridView control.
Unplanned
Last Updated: 15 Aug 2017 09:36 by Jesse Dyck
ADD. RadGridView - add AutoSizeRows functionality in HtmlViewDefinition
Unplanned
Last Updated: 15 Aug 2017 09:33 by Jared
Allow setting the CurrentColumn/CurrentCell in the RowValidaging event
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
IMPROVE. RadExpressionEditorForm - add ability to be shown as modal form
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 09:23 by ADMIN
IMPROVE. Extend the functionality of formatting the group text when grouping by more than one column is performed on the same group level
Unplanned
Last Updated: 15 Aug 2017 09:23 by ADMIN
Currently the mixed hierarchy mode does not work for child templates
Unplanned
Last Updated: 15 Aug 2017 09:36 by Svetlin
Add a TextAlignment property of GridViewSummaryItem.
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
IMPROVE. RadGridView - In hierarchy the excel-like filtering on child levels to show values only from the rows of the expanded row instead of all rows of the template.
1 2 3 4 5