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-07-10 11:11:14 +0900
commit122b275c2a711ab7a40adeaf6e48cec2bcf834d0 (patch)
treea3951ad052851baf851ff6631553b6b55be3529e /Xamarin.Forms.Platform.Tizen/Native
parent46a592e93f0ed0f6d17f2ddeb35c96f994692159 (diff)
downloadxamarin-forms-122b275c2a711ab7a40adeaf6e48cec2bcf834d0.tar.gz
xamarin-forms-122b275c2a711ab7a40adeaf6e48cec2bcf834d0.tar.bz2
xamarin-forms-122b275c2a711ab7a40adeaf6e48cec2bcf834d0.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;