I am trying to Hide or Show filed on the MVC form base of a value stored in the Viewbag. the value of the Viewbag is a database return. I can see the value of the Viewbag in my JavaScript but when I run the form Hide/Show functionality is not working. I am missing something can anyone help
CHTML code
JavaScript
x
14
14
1
<div class="form-group" id="SharedAssetShared" style="display:none">
2
<div class="form-group">
3
<div class="row">
4
5
<div class="col-md-2">
6
<label class="control-label ">If yes, what is the Legal basis for sharing? </label>
7
</div>
8
<div class="col-md-10">
9
<input asp-for="LegalBasisforSharing" class="form-control" />
10
<span asp-validation-for="LegalBasisforSharing" class="text-danger"></span>
11
</div>
12
</div>
13
</div>
14
Javascript Code
JavaScript
1
18
18
1
$(document).ready(function () {
2
divAsset();
3
});
4
5
function divAsset() {
6
var AssetShared1 = '@ViewBag.AssetShared';
7
8
if (AssetShared1 == 'true') {
9
$("#SharedAssetShared").show();
10
11
}
12
else {
13
$("#SharedAssetShared").hide();
14
15
}
16
17
}
18
C# Code to stored Viewbag value
JavaScript
1
8
1
public async Task<IActionResult> Edit(int? id)
2
{
3
var asset = await _context.VwAllUserAssets.Where(x => x.Id == id).FirstOrDefaultAsync();
4
ViewBag.AssetShared = asset.AssetShared;
5
6
return View(asset);
7
}
8
Advertisement
Answer
You should change viewbag assignment:
JavaScript
1
2
1
ViewBag.AssetShared = asset.AssetShared.ToString();
2
remove
JavaScript
1
2
1
style="display:none"
2
and in your javascrtipt
JavaScript
1
9
1
if (AssetShared1 == 'True') {
2
3
$('#SharedAssetShared').css("display","block");
4
}
5
else {
6
$('#SharedAssetShared').css('display','none');
7
8
}
9
but if you use bootstrap better to use:
JavaScript
1
8
1
if (AssetShared1 == 'True') {
2
$('#SharedAssetShared').removeClass("d-none");
3
}
4
else {
5
$('#SharedAssetShared').addClass("d-none");
6
7
}
8