kos
kos

Reputation: 269

monotouch DialogViewController select one or more elements

I am currently using the advanced editing tableview as outlined in Monotouch.Dialog that allows a user to delete as well as edit the label of table elements. Is there a way to enrich the tableview to achieve something similar to the screenshots, i.e. select one or more elements?

select elements

Upvotes: 1

Views: 372

Answers (1)

Janub
Janub

Reputation: 1594

this.TableView.AllowsMultipleSelection = true;

to create something similar to the above i think u need to create a custom element (maybe a subclass of checkElement)

Upvotes: 3

Related Questions