Skip to content
This repository was archived by the owner on Nov 28, 2024. It is now read-only.

Commit 13d52ca

Browse files
committed
Fix RadDataGrid frozen column edit bug
1 parent 5f562b3 commit 13d52ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Controls/Grid/Grid.UWP/View/ContainerGenerators/XamlGridEditCellGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public object GenerateContainerForItem(CellGenerationContext info, object contai
7979
{
8080
if (info.IsFrozen)
8181
{
82-
this.owner.FrozenEditRowLayer.AddVisualChild(pair.Item2);
82+
this.owner.FrozenEditRowLayer.AddVisualChild(element);
8383
}
8484
else
8585
{

0 commit comments

Comments
 (0)