I have am generating a listView that looks like this
Now, on the click of the "Add To Briefcase" button, I need to go though the each item and email the once where user has entered quantity.
I saw I can do something like this
foreach (var item in productFormsView.Items)
{
var somevalue = ((Form)item.DataItem).Quantity;
}
However, item.DataItem is returning null as below. How do I get the text from "QUANTITY" textboxes?