Files
lubelog/Views/Vehicle/_SupplyStore.cshtml
DESKTOP-GENO133\IvanPlex 92b3bc3aea rough draft of supply store.
2024-01-21 21:13:03 -07:00

20 lines
659 B
Plaintext

@model string
<a onclick="toggleSuppliesDiv()" class="btn btn-link">Available Supplies</a>
<div id="inputSupplies"v style="max-height:30vh; overflow-x:hidden;"></div>
<script>
function toggleSuppliesDiv(){
if ($("#inputSupplies").html() != "") {
$("#inputSupplies").html("");
} else {
getSupplies();
}
}
function getSupplies() {
var vehicleId = GetVehicleId().vehicleId;
$.get(`/Vehicle/GetSupplyRecordsForRecordsByVehicleId?vehicleId=${vehicleId}`, function (data) {
if (data) {
$("#inputSupplies").html(data);
}
})
}
</script>