Finally got my code working. But there's one strange thing I'd like to share.
When I was writing my code for user interaction, RowSelected did not appear
in the code completion intellisense. I forcefully had to write the code. The
code compiled successfully without giving me any errors. Why this strange
behavior? Can you explain the cause? I like to know what's going on behind
the screens.

Here is my code snippet:

public override void RowSelected(UITableView tblview, NSIndexPath indexPath)
{
        new UIAlertView("Notification", "You selected:
"+this._tableItems[indexPath.Section].Items[indexPath.Row].ProjectName.ToString
()+"", null, "OK", null).Show ();
     
AssessmentID=Convert.ToInt32(this._tableItems[indexPath.Section].Items[indexPath.Row].AssessmentID.ToString
());
        new UIAlertView("Notification", "The Corresponding AssessmentID Is:
"+AssessmentID+"", null, "OK", null).Show ();
                
}

Many Thanks.

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/UITableView-Scenario-Help-Needed-tp4655680p4655761.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to