@{ ViewBag.Title = "List of Products"; } @section AdditionalCss { <link rel="stylesheet" href="~/css/ui.jqgrid.min.css" /> } @section AdditionalJavaScript { <script src="~/js/jqgrid-i18n/grid.locale-en.min.js" asp-append-version="true"></script> <script src="~/js/jquery-jqgrid-4.13.2.min.js" asp-append-version="true"></script> <script src="~/js/jqgrid-listmultipledelete.js" asp-append-version="true"></script> <script type="text/javascript"> var urlAndMethod = '/Product/DeleteMultiple/'; $(function () { // set jqrid properties $('#list-grid').jqGrid({ url: '/Product/GridData/', datatype: 'json', mtype: 'GET', colNames: ['Product ID','Product Name','Supplier ID','Category ID','Quantity Per Unit','Unit Price','Units In Stock','Units On Order','Reorder Level','Discontinued'], colModel: [ { name: 'ProductID', index: 'ProductID', align: 'right' }, { name: 'ProductName', index: 'ProductName', align: 'left' }, { name: 'SupplierID', index: 'SupplierID', align: 'right' }, { name: 'CategoryID', index: 'CategoryID', align: 'right' }, { name: 'QuantityPerUnit', index: 'QuantityPerUnit', align: 'left' }, { name: 'UnitPrice', index: 'UnitPrice', align: 'right', formatter: 'currency', formatoptions: { decimalPlaces: 2, prefix: "$"} }, { name: 'UnitsInStock', index: 'UnitsInStock', align: 'right', formatter: 'integer' }, { name: 'UnitsOnOrder', index: 'UnitsOnOrder', align: 'right', formatter: 'integer' }, { name: 'ReorderLevel', index: 'ReorderLevel', align: 'right', formatter: 'integer' }, { name: 'Discontinued', index: 'Discontinued', align: 'center', formatter: 'checkbox' }, ], pager: $('#list-pager'), rowNum: 10, rowList: [5, 10, 20, 50], sortname: 'ProductID', sortorder: 'asc', viewrecords: true, caption: 'List of Products', height: '100%', width: '1200', toolbar: [true, 'top'], multiselect: true, onSelectRow: function (id, status, e) { // determine if a checkbox was clicked instead of the row var isCheckBoxClicked = $(e.target).is('input:checkbox'); // if the row is clicked go to the update page if (!isCheckBoxClicked) { if (id != null) { window.location.href = '/Product/Update/' + id + '?urlReferrer=/Product/ListMultipleDelete'; } } } }); // add the delete link (trash icon) to the jqgrid. $('#list-grid').append("<a href='#' id='deleteMultiple' onclick='deleteItems();return false;'><img src='../images/Delete.png' alt='Delete Selected Items' style='border: none;' /></a>"); }); </script> } <h2>@ViewBag.Title</h2> <br /><br /> <div id="errorConfirmationDialog"></div> <div id="errorDialog"></div> <a href="@Url.Action("Add", "Product", new { urlReferrer = "/Product/ListMultipleDelete" })"><img src="@Url.Content("~/images/Add.gif")" alt="Add New Product" style="border: none;" /></a> @Html.ActionLink("Add New Product", "Add", "Product", new { urlReferrer = "/Product/ListMultipleDelete" }) <br /><br /> <table id="list-grid"></table> <div id="list-pager"></div>