I have a situation where I have a 0-n fields that may need to be populated. I accomplish that by trying to bind to List<double>
in a for
loop as such
@for (var i = 0; i < 3; i++)
{
<input type="text" @bind="TraineeValues[i]" />
}
The issue is that underlying list values don't seem to be updating. Fiddle below