I need to implement check all checkbox which will check and uncheck the checkboxes in rows.
@Model.SResource
@Model.KResource
@Model.LocationResource
@for (int i = 0; i < Model.Instruments.Count; i++)
{
var values = Model.Instruments[i].Value.Split('~');
var status = values.Length > 0 ? values[0] : "";
var location = values.Length > 1 ? values[1] : "";
}
Sachin SinghPosted May 16, 2022, 1:05 PM
Umair AhmadPosted May 16, 2022, 12:53 PM
Jignesh KumarPosted May 14, 2022, 12:12 PM