WHen Control comes to following helper,object ref error occurs , I don't know why?
@Html.TextBoxFor(m => m[i].SundayDriveTime, new {@class = "smallTxtEntry0 daysDriveTime sundayDriveTime", @id = "PredefinedDriveTimeDetailsList_" + i + "_SundayDriveTime", oldValue = Model[i].SundayDriveTime, @onchange = "driveTimeDayValuesOnchnge(this)" })</td>
Model count is not zero and also SundayDriveTime alos has value
My model is :@model List<PredefinedDriveTimeDetails>
It does not show error while rendering other text boxes.
what is the problem??