I am working on an app where I want to collect which resource was sold and how much of it. I would also like to do reports on this to find out how much of one item was sold. This is proving to be a bit troublesome for a few reasons
thinking in terms of a C# windows app I was thinking about having a grid, with a combo box of the items as a column. This would allow me to enter a quantity and then select what Item from my drop down. I would then save the customerID,items and amounts to a separate table where I can query for my report.
Sadly, I am not aware of a method of adding records to a grid in MVC 5. But I have my grid already created. I am a little stumped in creating an action link in MVC to keep adding rows to a grid and save to a database.
Thanks for any help offered.