A Partial View passing a collection using the Html.BeginCollectionItem helper

First start by creating a view model to represent what you want to edit. I’m assuming cashAmount is a monetary value, so therefore should be a decimal (add other validation and display attributes as required) public class CashRecipientVM { public int? ID { get; set; } public decimal Amount { get; set; } [Required(ErrorMessage = … Read more