Link to home
Start Free TrialLog in
Avatar of tim freese
tim freeseFlag for United States of America

asked on

tableview is not updating

good day.

within my xamarin studio, my table view is bound to an observable collection.  the table correctly displays my items; however, when i remove an item from the collection, the table is not updating (the row still appears).

the collection itself has the item correctly removed - what more do i have to do for the table to update its contents?

to remove the row, i use:

UIApplication.SharedApplication.InvokeOnMainThread(new Action(() => {
_collectionOfTransactions.RemoteAt(indexPath.Row); }));

within the RowSelected event.

any help would be appreciated.
ASKER CERTIFIED SOLUTION
Avatar of tim freese
tim freese
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial