Hai All
i wrote this code individual record deletion in mvc using jquery but the check boxes are not in exact position .how can i delete records
TIA
@foreach (DataRow row in dtwalkin.Rows)
{
@* @Html.DisplayFor(modelItem => item.ComID)*@
@* @Html.DisplayFor(modelItem => item.Place)*@
@row["Place"].ToString();
@* @Html.DisplayFor(modelItem => item.JobDescr)*@
@row["JobDescr"].ToString();
@* @Html.DisplayFor(modelItem => item.JobLocation)*@
@row["JobLocation"].ToString();
@* @Html.DisplayFor(modelItem => item.Name)*@
@row["Name"].ToString();
@* @Html.DisplayFor(modelItem => item.HREmail)*@
@row["HREmail"].ToString();
@* @Html.DisplayFor(modelItem => item.StartDate)*@
@row["StartDate"].ToString();
@* @Html.DisplayFor(modelItem => item.EndDate)*@
@row["EndDate"].ToString();
@Html.ActionLink("Update", "Edit", new { /* id=item.PrimaryKey */ }) |
3 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Munesh SharmaPosted May 3, 2016, 1:32 PM
Ravi PatelPosted May 3, 2016, 8:23 AM
aditya immadiPosted May 3, 2016, 8:06 AM