我有一个 MVC 应用程序,其中有一类布尔值。如果项目被指示为拒绝(返回 false),则每个开关旁边都有一个文本区域用于输入评论。如果 swith 设置为 Accepted(返回 true),我需要禁用 textarea。我搜索了 ad nauseum 并找不到合适的解决方案。我知道 bootstrap-switch 内置了一个 on-change 事件处理程序,但我正在努力避免为每个 bool 字段设置一条单独的线,而不是使用 (this)。
以下是代码示例:
<div class="form-group">@Html.LabelFor(model => model.TaxTranscript, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-1">
<div class="checkbox">@Html.EditorFor(model => model.TaxTranscript) @Html.ValidationMessageFor(model => model.TaxTranscript, "", new {@class = "text-danger"})</div>
</div>
<div class="comments">@Html.Label("Comments", htmlAttributes: new { @class = "control-label col-md-1" })
<div class="col-md-4">@Html.EditorFor(model => model.TranscriptComments, new { htmlAttributes = new { @class = "form-control", @rows = 4 } }) @Html.ValidationMessageFor(model => model.TranscriptComments, "", new { @class = "text-danger" })</div>
</div>
</div>
<div class="form-group">@Html.LabelFor(model => model.AIR, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-1">
<div class="checkbox">@Html.EditorFor(model => model.AIR) @Html.ValidationMessageFor(model => model.AIR, "", new { @class = "text-danger" })</div>
</div>@Html.Label("Comments", htmlAttributes: new { @class = "control-label col-md-1" })
<div class="col-md-4 comments">@Html.EditorFor(model => model.AIRComments, new { htmlAttributes = new { @class = "form-control", @rows = 4 } }) @Html.ValidationMessageFor(model => model.AIRComments, "", new { @class = "text-danger" })</div>
</div>
这是脚本:
<script src="~/Scripts/mvcfoolproof.unobtrusive.min.js"></script>
<script>
$(function() {
$('input[type="checkbox"]').bootstrapSwitch('state', false, false);
$('input[type="checkbox"]').bootstrapSwitch('size', 'mini');
$('input[type="checkbox"]').bootstrapSwitch('onColor', 'success');
$('input[type="checkbox"]').bootstrapSwitch('onText', 'Accepted');
$('input[type="checkbox"]').bootstrapSwitch('offColor', 'danger');
$('input[type="checkbox"]').bootstrapSwitch('offText', 'Rejected');
$('input[name="TaxTranscript"]').on('switchChange.bootstrapSwitch', function(event, state) {
$(this).toggle('#TranscriptComments textarea');
});
});
</script>
我正在使用 FoolProof,如果值为 false,则需要填写 textarea 字段。