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

Commit 2e8b6ee

Browse files
authored
Merge pull request #515 from telerik/development
Merge development into master
2 parents e73f5e3 + dd32b70 commit 2e8b6ee

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

BuildTools/BuildNuGet.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
SET MSBUILD=%WINDIR%\microsoft.net\framework\v4.0.30319\MSBuild.exe
2-
%MSBUILD% BuildNuget.UWP.proj /property:Version=1.0.2.9
2+
%MSBUILD% BuildNuget.UWP.proj /property:Version=1.0.2.10

BuildTools/BuildNuget.UWP.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<Target Name="PrepareNugetProperties">
1616

1717
<PropertyGroup>
18-
<Version Condition= " '$(Version)' == '' ">1.0.2.9</Version>
18+
<Version Condition= " '$(Version)' == '' ">1.0.2.10</Version>
1919
<FullPathDeployDirectory>$([System.IO.Path]::GetFullPath('$(DeployDirectory)'))</FullPathDeployDirectory>
2020
<BinariesSubDir>$(BinariesTargetDirectory)</BinariesSubDir>
2121

BuildTools/Nuspecs.UWP/Package.UniversalWindowsPlatform.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<icon>images\uwp.png</icon>
1313
<requireLicenseAcceptance>true</requireLicenseAcceptance>
1414
<description>UI for Universal Windows Platform is a toolset for building Universal Windows Platform apps for the Windows Store and the enterprise. The library is designed to offer the same user experience, functionality and behavior on Windows devices of all form factors.</description>
15-
<releaseNotes>For full release notes see https://github.com/telerik/UI-For-UWP/releases/tag/1.0.2.9</releaseNotes>
15+
<releaseNotes>For full release notes see https://github.com/telerik/UI-For-UWP/releases/tag/1.0.2.10</releaseNotes>
1616
<tags>UWP Windows Telerik Controls XAML C#</tags>
1717
<language>en-US</language>
1818
</metadata>

Controls/Grid/Grid.UWP/View/Services/Editing/EditingService.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Text;
@@ -85,7 +85,7 @@ public bool BeginEdit(ItemInfo rowInfo)
8585
this.Owner.EditRowLayer.ScheduleFirstEditorForFocus();
8686
}
8787

88-
this.Owner.Model.CurrentDataProvider.CommitEditOperation(this.EditItem);
88+
this.Owner.Model.CurrentDataProvider.BeginEditOperation(this.EditItem);
8989

9090
// hide the CurrentItem decoration
9191
this.Owner.visualStateService.UpdateCurrentDecoration(-1);
@@ -189,19 +189,19 @@ public bool CancelEdit(ActionTrigger trigger)
189189
this.Owner.EditRowLayer.EditorLayoutSlots.Clear();
190190
}
191191

192-
this.Owner.Model.CurrentDataProvider.CommitEditOperation(this.EditItem);
192+
this.Owner.Model.CurrentDataProvider.CancelEditOperation(this.EditItem);
193193
})
194194
{
195195
Flags = UpdateFlags.AffectsContent
196196
};
197197

198-
this.Owner.updateService.RegisterUpdate(update);
199-
200198
foreach (var pair in this.operation.OriginalValues)
201199
{
202200
pair.Key.SetValueForInstance(this.operation.EditItemInfo.Item, pair.Value);
203201
}
204202

203+
this.Owner.updateService.RegisterUpdate(update);
204+
205205
if (this.operation.EditMode == DataGridUserEditMode.Inline)
206206
{
207207
this.Owner.EditRowLayer.EditorLayoutSlots.Clear();

Controls/Primitives/Primitives.UWP/SideDrawer/RadSideDrawer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ private static void OnDrawerStateChanged(DependencyObject d, DependencyPropertyC
705705
var sideDrawer = d as RadSideDrawer;
706706
var mainContent = sideDrawer.MainContent as FrameworkElement;
707707

708-
if (mainContent != null)
708+
if (mainContent != null && sideDrawer.TapOutsideToClose)
709709
{
710710
mainContent.IsHitTestVisible = (DrawerState)e.NewValue == DrawerState.Closed;
711711
}
@@ -742,7 +742,7 @@ private static void OnDrawerTransitionFadeOpacityChanged(DependencyObject d, Dep
742742

743743
if (sideDrawer.IsTemplateApplied)
744744
{
745-
sideDrawer.InvalidateMeasure();
745+
sideDrawer.ResetDrawer();
746746
}
747747
}
748748
private static void OnIsOpenChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright © 2015-2019 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.
1+
Copyright © 2015-2023 Progress Software Corporation and/or one of its subsidiaries or affiliates. All rights reserved.
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

notice.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
== in this case for Telerik UI for UWP by Progress ==
55
=========================================================================
66
Telerik UI for UWP by Progress
7-
Copyright (C) 2015 - 2019 Progress Software Corporation
7+
Copyright (C) 2015 - 2023 Progress Software Corporation
88
For license information see the LICENSE.md file which accompanies this NOTICE.txt file.
99
Any open source software that may be delivered by Progress Software Corporation embedded in or in association with Telerik UI for UWP by Progress is provided pursuant to the open source license applicable to such software and subject to the disclaimers and limitations on liability set forth in such license.

0 commit comments

Comments
 (0)