Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
5 years ago
|
function addrCountryChanged(){
|
||
|
var stat_select = document.getElementById('id_stat');
|
||
|
var stat_text = document.getElementById('id_li_stat_text');
|
||
|
var stat = stat_select[stat_select.selectedIndex].value;
|
||
|
if (stat === "other"){
|
||
|
stat_text.style.display="block";
|
||
|
} else {
|
||
|
stat_text.style.display="none";
|
||
|
$('#id_stat_text').val("");
|
||
|
}
|
||
|
}
|
||
|
function hideSchoolTextfields(){
|
||
|
var skola_nazev = document.getElementById('id_li_skola_nazev');
|
||
|
var skola_adresa = document.getElementById('id_li_skola_adresa');
|
||
|
skola_nazev.style.display="none";
|
||
|
skola_adresa.style.display="none";
|
||
|
|
||
|
}
|
||
|
function schoolNotInList(){
|
||
|
var skola_nazev = document.getElementById('id_li_skola_nazev');
|
||
|
var skola_adresa = document.getElementById('id_li_skola_adresa');
|
||
|
// FIXME nefunguje a nevim proc (TypeError: $(...).select2 is not a function)
|
||
|
//var skola_select = $('#id_skola').select2();
|
||
|
//skola_select.val(null).trigger('change');
|
||
|
skola_nazev.style.display="block";
|
||
|
skola_adresa.style.display="block";
|
||
|
}
|
||
|
|
||
|
document.addEventListener("DOMContentLoaded", function(){
|
||
|
addrCountryChanged();
|
||
|
hideSchoolTextfields();
|
||
|
});
|