public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
            {
                MonkeySpace.Core.Speaker s = sectionElements[indexPath.Section][indexPath.Row];
                if (bioVC == null)
                    bioVC = new SpeakerBioViewController (s);
                else
                    bioVC.Update (s);

                bioVC.Title = s.Name;
                svc.NavigationController.PushViewController (bioVC, true);
                tableView.DeselectRow (indexPath, true);
            }
Ejemplo n.º 2
0
 public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
 {
     MIX10Xml.Session s = _svc.Sessions[indexPath.Row];
     if (sessVC == null)
         sessVC = new SessionViewController(s);
     else
         sessVC.Update(s);
     sessVC.Title = s.Title;
     _svc.NavigationController.PushViewController(sessVC, true);
     tableView.DeselectRow(indexPath,true);
 }
 public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
 {
     var loc = _locations[indexPath.Row];
     Debug.WriteLine("RowSelected: Label=" + loc.Title);
     _dvc.FlipController.Flip(_locations[indexPath.Row]);
     tableView.DeselectRow(indexPath, true);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// If there are subsections in the hierarchy, navigate to those
 /// ASSUMES there are _never_ Categories hanging off the root in the hierarchy
 /// </summary>
 public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
 {
     string date = _dates[indexPath.Row].Date.ToString("dd-MMM dddd");
     DayViewController sessionsView = new DayViewController(_dates[indexPath.Row].Timeslots);
     sessionsView.Title = date;
     _dvc.NavigationController.PushViewController(sessionsView,true);
     tableView.DeselectRow(indexPath,true);
 }