我有一个 ASP.NET 应用程序,它在页面中有一个产品列表,其中包含相关详细信息和状态列(位字段 - 复选框)。它运行良好,我可以使用 Ajax 将状态从 true 更改为 false,反之亦然。这样做时,我保持 CheckBox 的状态意味着如果它是真的,那么它保持选中状态,否则不选中。请参阅下图,除了红色突出显示(还有一件事 - 在这种情况下,True 表示有效,false 表示无效产品):
现在我正在尝试将 CheckBoxes 变成拨动开关,以保持 CheckBoxes 的变化是这样的 - BootStrap Toggle Switches
我不知道该怎么做,并尝试按照以下方法使 CheckBoxes 用作切换开关,使用如下类 - jQuery Toggle Switches
<script>
$(document).ready(function () {
$('.toggle-checkbox').btnSwitch({
Theme: 'Light',
OnText: "On",
OffText: "Off",
OnValue: true,
OffValue: false
});
});
</script>
注意:我必须保持图像中显示的复选框的状态,而不是红色突出显示,如 true、checked 和反之亦然。很高兴知道这是否可以用拨动开关做同样的事情。
数据库脚本:
CREATE TABLE [dbo].[Products](
[Id] [int] IDENTITY(1,1) PRIMARY KEY,
[ProductName] [nvarchar](MAX) NOT NULL,
[Time_Posted] [nvarchar](MAX) NOT NULL,
[Status] [bit] NOT NULL
)
INSERT INTO Products VALUES
('Denim', '7:30:10 PM', 1),
('Pringles', '8:00:00 PM', 1)
模型:
public class Product
{
public int Id { get; set; }
public string ProductName{ get; set; }
public string Time_Posted { get; set; }
public bool Status { get; set; }
}
控制器:
//Get details of the products
[HttpGet]
public ActionResult Index()
{
MainDbContext db = new MainDbContext();
var con = (from c in db.Products
select c).ToList();
return View(con);
}
//Update status of the products like active or inactive
[HttpPost]
public JsonResult UpdateStatus(int id, bool status)
{
MainDbContext db = new MainDbContext();
var result = db.Lists.Find(id);
if (result != null)
{
result.Status = status;
db.Entry(result).State = EntityState.Modified;
db.SaveChanges();
}
return Json(true);
}
看法:
@model SampleApp.Models.Product
@{
ViewBag.Title = "Index";
}
<link href="~/Scripts/jquery.btnswitch.css" rel="stylesheet" />
<script src="~/Scripts/jquery-3.1.1.slim.min.js"></script>
<script src="~/Scripts/jquery.btnswitch.js"></script>
<div id="divData">
<table class="table table-bordered table-condensed" id="data">
<thead>
<tr>
<th style="text-align:center;" class="hide">ID</th>
<th style="text-align:center;">Products</th>
<th style="text-align:center;">Time Posted</th>
<th style="text-align:center;">Status</th>
</tr>
</thead>
<tbody>
@for (int i = 0; i < Model.Items.Count; i++)
{
<tr>
<td id="ID" style="text-align: center;" class="hide">@Html.DisplayFor(modelItem => Model.Items[i].Id)</td>
<td style="text-align: center;">@Html.DisplayFor(modelItem => Model.Items[i].ProductName)</td>
<td style="text-align: center;">@Html.DisplayFor(modelItem => Model.Items[i].Time_Posted)</td>
<td style="text-align: center;">@Html.CheckBoxFor(modelItem => Model.Items[i].Status, new { @class = "toggle-checkbox", data_id = Model.Items[i].Id })</td>
</tr>
}
</tbody>
</table>
</div>
<script type="text/javascript">
var url = '@Url.Action("UpdateStatus")';
$('.toggle-checkbox').click(function () {
var isChecked = $(this).is(':checked'); //CheckBox checked - True or false
var id = $(this).data('id'); //Get the id of that specific checked row
$.post(url, { id: id, status: isChecked }, function (response) {
if (response) {
alert("Status changed");
}
})
});
</script>
<script>
$(document).ready(function () {
$('.toggle-checkbox').btnSwitch({ //This is the script for toggling
Theme: 'Light',
OnText: "On",
OffText: "Off",
OnValue: true,
OffValue: false
});
});
</script>