Files
BeWoPlaner/BeWoPlanerMobil/Scripts/supportConceptDropDown.js
Lyndon b695d152e0 Mobilklient:
- Ziele funktionieren
 - Hilfeplanauswahl optisch überarbeitet
2019-07-19 17:13:57 +02:00

25 lines
696 B
JavaScript

function showSupportConceptList() {
var hidingModalWrapper = $("#hidingModalWrapper");
var supportConceptListContainer = $("#supportConceptListContainer");
try {
hidingModalWrapper.show();
hidingModalWrapper.css("height", $(document).height());
supportConceptListContainer.show();
} catch(exception) {
hidingModalWrapper.hide();
supportConceptListContainer.hide();
console.log("Fehler: " + exception.message);
}
}
function selectSupportConcept(cb2scOid) {
$("#supportConceptForm_" + cb2scOid).submit();
}
function hideModalWrapper() {
$("#hidingModalWrapper").hide();
$("#supportConceptListContainer").hide();
}