Custom Widgets

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-11-03 13:22:48 -07:00
parent 82634e9e1b
commit d6b6600ce9
9 changed files with 62 additions and 1 deletions

View File

@@ -264,4 +264,13 @@ function loadGlobalSearchResult(recordId, recordType) {
waitForElement('#planRecordModalContent', showEditPlanRecordModal, recordId);
break;
}
}
function loadCustomWidgets() {
$.get('/Vehicle/GetAdditionalWidgets', function (data) {
$("#vehicleCustomWidgetsModalContent").html(data);
$("#vehicleCustomWidgetsModal").modal('show');
})
}
function hideCustomWidgetsModal() {
$("#vehicleCustomWidgetsModal").modal('hide');
}