Change default sort option
authorcskim <charles0.kim@samsung.com>
Sat, 29 Apr 2017 09:14:42 +0000 (18:14 +0900)
committerChulSeung Kim <charles0.kim@samsung.com>
Thu, 8 Jun 2017 09:34:53 +0000 (18:34 +0900)
Change-Id: I7fe646cc7ceac94eb28cc06085857a6ecf26bb1a

TVApps/TVApps/ViewModels/MainPageViewModel.cs
TVApps/TVApps/Views/FooterNormalStatus.xaml.cs

index 050cf62..837476b 100755 (executable)
@@ -389,8 +389,7 @@ namespace TVApps.ViewModels
         {
             appsHolder = new AppsHolder(this);
 
-            // TODO : set default value as RecentlyInstalled
-            appsHolder.SortingOption = SortingOptions.Ascending;
+            appsHolder.SortingOption = SortingOptions.Newest;
             ChangeCurrentStatus(AppsStatus.Default);
         }
 
index 55727f2..7711085 100755 (executable)
@@ -98,6 +98,7 @@ namespace TVApps.Views
 
             SortButton = new DropdownList();
             SortButton.ItemsSource = SortList;
+            SortButton.SelectedItem = SortList[0];
 
             SortButton.ItemSelected += (s, e) =>
             {