TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Adhikar Patil
NA
481
127.9k
How do I select all checkbox across all the pages on the cli
Jul 11 2019 7:48 AM
Hello,
How do I select all checkbox across all the pages on the click of a ‘check all’ checkbox in JavaScript or jQuery? Currently only the current page records get selected.
Here is my code. please give me the solution.
@model PagedList.IPagedList<SDMS_MVC_WEB.Areas.Admin.Models.MobileStructureListModel>
@using PagedList.Mvc;
<link href="~/Content/PagedList.css" rel="stylesheet" type="text/css" />
@{
ViewBag.Title = "Index";
Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml";
}
<h2>Mobile Structure</h2>
<div class="row">
<div class="col-md-12">
<div class="col-md-8">
</div>
<div class="col-md-2">
<button type="button" id="btnDisMobileStructure" class="btn btn-primary pull-right"> DisAllow Mobile</button>
</div>
<div class="col-md-2">
<button type="button" id="btnMobileStructure" class="btn btn-primary pull-right"> Allow Mobile</button>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
</div>
</div>
<div class="row">
<div class="col-md-12" id="tableStructures">
<table class="table table-striped table-bordered">
<tr>
<th style="text-align:center"><input type="checkbox" id="ckbCheckAll" value="false" /></th>
<th>
@Html.ActionLink("Structure Number", "Index", new { sortOrder = ViewBag.StructureNumber })
</th>
<th>
@Html.ActionLink("Structure Name", "Index", new { sortOrder = ViewBag.StructureName })
</th>
<th>
@Html.ActionLink("Facility Code", "Index", new { sortOrder = ViewBag.ParkCode })
</th>
<th>
@Html.ActionLink("Facility Name", "Index", new { sortOrder = ViewBag.ParkName })
</th>
<th>
@Html.ActionLink("Update Type Code", "Index", new { sortOrder = ViewBag.UpdateTypeCode })
</th>
<th>
@Html.ActionLink("Is Mobile Structure", "Index")
</th>
</tr>
@foreach (var item in Model)
{
var style1 = (@item.Archived == true) ? "(Archived)" : "";
<tr style="@style1">
<td style="text-align:center">
@Html.CheckBoxFor(modelitem => item.IsSelectdRow, new { @class = "checkboxclass", @data_strno = item.StructureNumber, @id = item.Id })
<input type="hidden" id="@item.Id" data-strno="@item.StructureNumber" />
</td>
<td>
@Html.DisplayFor(modelItem => item.StructureNumber) @style1
</td>
<td>
@Html.DisplayFor(modelItem => item.StructureName)
</td>
<td>
@Html.DisplayFor(modelItem => item.ParkCode)
</td>
<td>
@Html.DisplayFor(modelItem => item.ParkName)
</td>
<td>
@Html.DisplayFor(modelItem => item.UpdateTypeCode)
</td>
@if (item.IsMobileStructure == false)
{
<td>
No
</td>
}
else
{
<td>
Yes
</td>
}
</tr>
}
</table>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="dataTables_info">
Page @(Model.PageCount < Model.PageNumber ? 0 : Model.PageNumber) of @Model.PageCount
</div>
</div>
<div class="col-md-6 pull-right">
<div class="dataTables_paginate paging_bootstrap pull-right">
@Html.PagedListPager(Model, page => Url.Action("MobileStructure", new { page, sortOrder = ViewBag.CurrentSort }))
</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$("#tableStructures").on("click", "#ckbCheckAll", function () {
if (this.checked) {
$("#tableStructures").find('input[type="checkbox"].checkboxclass').each(function (i, k) {
$(this).prop("checked", true);
});
}
else {
$("#tableStructures").find('input[type="checkbox"]').each(function (i, k) {
$(this).prop("checked", false);
});
}
});
$("#tableStructures").on('change', "input[type='checkbox']", function () {
if ($(this).is(":checked")) {
} else {
$("#ckbCheckAll").prop("checked", false);
}
});
});
</script>
Reply
Answers (
1
)
How to use Check in and checked out in TFS
How to use Angular 7 in Asp.Net core MVC