summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native
diff options
context:
space:
mode:
authorSeungkeun Lee <sngn.lee@samsung.com>2016-12-27 09:50:52 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-03-24 13:18:58 +0900
commit22c4f87594b67f3c4429a63cedca42d239346ca4 (patch)
treef9b2f0e1e94a4635daaa78ec7ea8b952db0f3c0e /Xamarin.Forms.Platform.Tizen/Native
parent2d8650dd8d9a7122e3d47047db4a15a626701aa9 (diff)
downloadxamarin-forms-22c4f87594b67f3c4429a63cedca42d239346ca4.tar.gz
xamarin-forms-22c4f87594b67f3c4429a63cedca42d239346ca4.tar.bz2
xamarin-forms-22c4f87594b67f3c4429a63cedca42d239346ca4.zip
Apply initial value of Cell.IsEnabled
- Cell.IsEnabled was false when listview was created, this value was not applied to listview Change-Id: I1ddc23c440189c5bcca762194b9c91c80bc1c8a6
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/ListView.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/ListView.cs b/Xamarin.Forms.Platform.Tizen/Native/ListView.cs
index e932a28e..f5047b3d 100644
--- a/Xamarin.Forms.Platform.Tizen/Native/ListView.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/ListView.cs
@@ -501,6 +501,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native
}
groupItemContext.Item.SelectionMode = GenListSelectionMode.None;
+ groupItemContext.Item.IsEnabled = groupCell.IsEnabled;
groupItemContext.IsGroupItem = true;
groupItemContext.ListOfSubItems = groupList;
@@ -543,6 +544,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native
}
itemContext.Item.SelectionMode = GenListSelectionMode.Always;
+ itemContext.Item.IsEnabled = cell.IsEnabled;
cell.PropertyChanged += OnCellPropertyChanged;
(cell as ICellController).ForceUpdateSizeRequested += OnForceUpdateSizeRequested;