Unplanned
Last Updated: 29 Aug 2024 14:38 by Connor
The current behavior clears the selection when doing so.
In Development
Last Updated: 20 Aug 2024 15:04 by ADMIN
Scheduled for 2024 Q4 (November)
How to reproduce: Create a DPI-aware application and run it on a Windows 10 machine on 125%, the text inside the editors is smaller compared to the text in cells which are not in edit mode.

Workaround: 
private void RadGridView1_CellEditorInitialized(object sender, GridViewCellEventArgs e)
{
    BaseInputEditor editor = e.ActiveEditor as BaseInputEditor;

    if (editor != null)
    {
        RadTextBoxItem item = editor.EditorElement.FindDescendant<RadTextBoxItem>();

        if (item != null)
        {
            item.HostedControl.Font = this.radGridView1.GridViewElement.GetScaledFont(this.radGridView1.GridViewElement.DpiScaleFactor.Height);
        }
    }
} 
Unplanned
Last Updated: 20 Aug 2024 12:55 by ADMIN
Unplanned
Last Updated: 19 Aug 2024 11:24 by ADMIN
  1. Group by some column or create hierarchy.
  2. Select all from the parent header check box or in the header.
  3. Expand parent row
  4. As a result, the row expands, but selection disappears.
In Development
Last Updated: 15 Aug 2024 09:28 by ADMIN
Unplanned
Last Updated: 09 Aug 2024 11:52 by ADMIN
In this case, we have GridViewCalculatorColumn. The cell value is 123, for example. Trying to edit the cell value, the RadCalculatorEditor reset the cell value to 0. 
Completed
Last Updated: 09 Aug 2024 09:22 by ADMIN
Release 2024.3.806 (2024 Q3)
Created by: Jason
Comments: 6
Category: GridView
Type: Feature Request
11
Enable the ability to MERGE seperate rows (different records), like found in ITunes "Songs" mode where is shows the artwork (then artist,release undernearth) in a custom class, then the related song rows to the right.

Your competitor Dev Express has it already in place.

See youtube video here :

https://www.youtube.com/watch?v=TfPXwE7GcXs

Cheers
Completed
Last Updated: 07 Aug 2024 15:11 by ADMIN
Release 2024.3.806 (2024 Q3)
Unplanned
Last Updated: 06 Aug 2024 10:33 by ADMIN
Unplanned
Last Updated: 01 Aug 2024 10:45 by ADMIN
In this case, we have null values in some cells. When filtering the column, these cells will be ignored. 
Unplanned
Last Updated: 30 Jul 2024 13:00 by ADMIN
While the Excel-Like filtering dialog is open and the mouse is over the RadGridView rows, moving the mouse wheel will scroll both the filtering dialog and the rows.
Unplanned
Last Updated: 27 May 2024 08:14 by ADMIN
EndEdit() method is not called of IEditableObject if an exception is thrown while setting a null value to the bound property
Completed
Last Updated: 15 May 2024 07:49 by ADMIN
Release 2024.2.514 (2024 Q2)
NullReferenceException occurs in a multi-select scenario when clicking (and holding the mouse button) on an empty area in the grid and the mouse leaves the boundaries of the control.
Completed
Last Updated: 15 May 2024 07:49 by ADMIN
Release 2024.2.514 (2024 Q2)

In this scenario, the RadGridView.DataSource property is set to Microsoft.EntityFrameworkCore.ChangeTracking.ObservableCollectionListSource. When the RadGridView.Rows.Remove() method is called an IndexOutOfRange exception is thrown.

 


Unplanned
Last Updated: 09 May 2024 10:25 by ADMIN
In this case, the RadGridView is in the Self-Reference hierarchy. When the value of a cell is changed runtime, we are populating the bound (BindingList) collection with new items. All BindingList notifications will be called, however, the internal RadListSource in the RadGridView won't be updated, thus leading to a ArgumentOutOfRangeException.
Unplanned
Last Updated: 08 May 2024 13:46 by ADMIN
In the description of the RowIndent property is mentioned that this will indent groups and hierarchy rows.  However, it can indent group rows only. 
Unplanned
Last Updated: 04 May 2024 08:38 by erwin
Holding CTRL + C on a cell for a couple of seconds will throw ExternalException. 
Unplanned
Last Updated: 01 May 2024 13:47 by ADMIN

In this scenario, the Browsable(false) attribute is set to both properties which are used to create the self-referencing hierarchy. When the columns are predefined, running that application will freeze as the RadGridView could not correctly get the parent row. If the columns are auto-generated, this behavior is not observed. 

This is not exactly a real solution as setting the Browsable(false) attribute will remove the properties from the source. However, the control should not freeze the application.

Unplanned
Last Updated: 25 Apr 2024 13:11 by Ashley
It appears that this scenario is not handled properly in our exporter. Consider the case where you have two templates that use view definition. 

The view definition from the second template is not exported at all.
Unplanned
Last Updated: 23 Apr 2024 12:12 by ADMIN
The Excel-like filter in the SelfReference hierarchy is slow.
1 2 3 4 5 6