Completed
Last Updated: 21 May 2019 11:08 by ADMIN
Release LIB 2019.2.527 (05/27/2019)

The following exception is observed in certain cases:

at Telerik.Windows.Controls.GridView.GridViewVirtualizingPanel.FlatLayoutStrategy.RealizeMergedCells(Double frozenOffset, IEnumerable`1 mergedCells)

at Telerik.Windows.Controls.GridView.GridViewVirtualizingPanel.FlatLayoutStrategy.CalculateMergedCells(Boolean shouldInvalidateMeasure)

at Telerik.Windows.Controls.GridView.GridViewVirtualizingPanel.CalculateMergedCells(Boolean shouldInvalidateMeasure)

at Telerik.Windows.Controls.GridView.GridViewCellsPanel.ArrangeOverride(Size finalSize)

Unplanned
Last Updated: 20 May 2019 13:07 by ADMIN
When two columns in two separate column groups have the same name and they belong two separate column groups, the column group names of the parent column groups can be appended to the display content of the GridViewGroupPanelCells.

For example, the duplicate Code columns in the attached image should have content "PG Code" and "VENUE Code" respectively.
Completed
Last Updated: 17 May 2019 15:17 by ADMIN
Release LIB 2019.2.520 (05/20/2019)
Unplanned
Last Updated: 07 May 2019 15:52 by Anthony

The built-in export capabilities for the RadGridView are clunky and not well though out. Additionally, it doesn't fully support exporting hierarchical child data. (You can do it, but you have to go through a good bit of song and dance for something that I've seen other tool sets do automatically.)

I'd like to see the option fully baked that doesn't require code-behind (allowing an MVVM approach). And asynchronous methods that uses standard async-await conventions.

Completed
Last Updated: 03 May 2019 08:03 by ADMIN
Release R2 2019
Nested property definitions are visible in situations when they don't match the filtering criteria.
Unplanned
Last Updated: 30 Apr 2019 15:17 by ADMIN

Add a property to the RadGridView that provides a distinct template for adding a new row.

Sometimes you have classes with no default constructor. Those classes may have properties that are read-only after construction. This cannot be handled in the RadGridView, because you only have the choice of a CellEditTemplate. (I'm envisioning something akin to the RowDetailsTemplate.)

Example: I have a class that defines a invoice match for payment application. Once the invoice is set it cannot be changed. The user can still edit the match, but they're only allowed to edit the amount to be applied.

Unplanned
Last Updated: 16 Apr 2019 12:56 by ADMIN
When the RadGridView is bound to a collection of DynamicObject and runtime we add a new property to the objects, this new property will not be respected. The columns will not be refresh.
Completed
Last Updated: 12 Apr 2019 11:53 by ADMIN
Release LIB 2019.1.415 (04/15/2019)
Completed
Last Updated: 05 Apr 2019 10:55 by ADMIN
Release LIB 2019.1.408 (04/08/2019)
If your data contains uint, long or any numeric type different than Int32 or Decimal, the searching doesn't work.
Won't Fix
Last Updated: 04 Apr 2019 13:57 by ADMIN

The content of the cell is set from .LoadContent() method and is returned from the CreateCellElement method of the column. 

One possible scenario for a fix is to change that behavior and apply directly the template as WPF DataGrid does. However, this is a huge breaking change with CreateCellElement method is widely used. The second approach is to leave the code as it is right now, return the element from method of DataTemplate and set the ContentTemplate property of the cell to that DataTemplate. This will cause the content to be loaded twice. Which will degrade the  

So, as it turns out the solution is either to introduce breaking change or degrade the performance. Both of them are against our believes and efforts to improve the controls. 

Our suggestion is to use a workaround -  setting triggers directly to the style. We do hope you understand our concerns. 
Unplanned
Last Updated: 02 Apr 2019 13:23 by ADMIN
Created by: Carl Herlitz
Comments: 0
Category: GridView
Type: Feature Request
7
 
Completed
Last Updated: 01 Apr 2019 10:48 by ADMIN
Release LIB 2019.1.401 (04/01/2019)
Unplanned
Last Updated: 25 Mar 2019 09:15 by ADMIN
When format cell is copying from Excell, only the formatted value is passed into the RadGridView.
Completed
Last Updated: 14 Mar 2019 12:05 by ADMIN
When all columns are readonly, the NewRowPosition is Bottom, a new row is added through the UI and the Tab key is pressed, an InvalidOperationException is thrown.

As a workaround, you can call the CommitEdit method inside a Dispatcher with a low priority in the AddingNewDataItem event:
private void Grid_AddingNewDataItem(object sender, Telerik.Windows.Controls.GridView.GridViewAddingNewEventArgs e)
        {
            Dispatcher.BeginInvoke(new Action(() =>
            {
                this.Grid.CommitEdit();
 
            }), DispatcherPriority.ApplicationIdle);
        }
Unplanned
Last Updated: 11 Mar 2019 14:39 by ADMIN
ADMIN
Created by: Ivan Ivanov
Comments: 0
Category: GridView
Type: Bug Report
2
Unhandled exception System.InvalidOperationException: The calling thread cannot access this object because a different thread owns it.
   at System.Windows.Threading.Dispatcher.VerifyAccess()
   at System.Windows.DependencyObject.GetValue(DependencyProperty dp)
   at Telerik.Windows.Data.SortDescriptorBase.get_SortDirection()
   at Telerik.Windows.Data.Expressions.SortDescriptorCollectionExpressionBuilder.Sort()
   at Telerik.Windows.Data.QueryableExtensions.Sort(IQueryable source, IEnumerable`1 sortDescriptors)
   at Telerik.Windows.Data.QueryableExtensions.Sort(IQueryable source, SortDescriptorCollection sortDescriptors)
. . .
Unplanned
Last Updated: 06 Mar 2019 13:54 by ADMIN
When there are 1000 (reproduce with 500) distinct values in the Popup filter and we try to select all of them it took 15 seconds and more when using ICustomPropertyProvider.
Completed
Last Updated: 25 Feb 2019 09:38 by ADMIN
Setting GridViewCell content template by Style is not working with R1 2019. 
Won't Fix
Last Updated: 22 Feb 2019 15:56 by ADMIN


The fix for this issue will be available with the next LIB (version 2018.3.1224) expected on Monday, December 24.
Unplanned
Last Updated: 18 Feb 2019 17:12 by ADMIN