25 lines
696 B
JavaScript
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();
|
|
} |