Для вашего текущего кода вам не удастся найти элемент кнопки, попробуйте изменить селектор, например
$("#customers").on("click",".js-delete", function (e) {
var button = $(this);
bootbox.confirm("Are you sure you want to delete this customer?", function (result) {
});
});
или
$("#customers .js-delete").on("click",function (e) {
var button = $(this);
bootbox.confirm("Are you sure you want to delete this customer?", function (result) {
});
});
Для использования загрузочной коробки вам необходимоиспользуйте bootstrap.css
вместо bootstrap-lumen.css
.
Попробуйте
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/Site.css",
"~/Content/datatables/css/datatables.bootstrap.css"));