summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2016-12-26 17:20:41 -0800
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2016-12-26 17:20:41 -0800
commit22745695719b61b55d97cd47dbaeaffca6a063b7 (patch)
tree0f05407caf4d8d8046e0a5fa565d69b82f244a47
parent1422e9ef1fbaf6cd8652290f132dd58685d995e9 (diff)
parent336ffb60b22fb9ed2851d12a3152c6b79a466750 (diff)
downloadxamarin-forms-22745695719b61b55d97cd47dbaeaffca6a063b7.tar.gz
xamarin-forms-22745695719b61b55d97cd47dbaeaffca6a063b7.tar.bz2
xamarin-forms-22745695719b61b55d97cd47dbaeaffca6a063b7.zip
Merge "Apply initial value of Cell.IsEnabled" into tizen
-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;