Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
785
IGGridView EditMode
posted

Hi - I'm curious to know if you have a recommendation for handling an insert of a row in your gridView. I know how to perform an insert, but I'm looking if their is a recommendation on the design. Xamarin recommends using the:

(Image below of the standard UITableView in EditMode)

EditingStyleForRow – returns    UITableViewCellEditingStyle.Delete for the rows containing    data, and returns UITableViewCellEditingStyle.Insert for the    last row (which will be added specifically to behave as an insert button).

 

Do you guys have anything like this where the last row in the gridVIew will be a button to "Add New" or should I just use a button somewhere?

 

http://docs.xamarin.com/guides/ios/user_interface/tables/part_4_-_editing

 

UITableView