##// END OF EJS Templates
new structure and views.py (pedestal) update
new structure and views.py (pedestal) update

File last commit:

r366:bdf15dfd5ebe
r366:bdf15dfd5ebe
Show More
abs.js
19 lines | 461 B | application/javascript | JavascriptLexer
$(document).ready(function() {
updateOperationMode()
});
$("#id_operation_mode").on('change', function() {
updateOperationMode()
});
function updateOperationMode(){
var operation_mode = $("#id_operation_mode").val();
if (operation_mode==0){
document.getElementById("id_operation_value").disabled=true;
$("#id_operation_value").hide();
}
else {
document.getElementById("id_operation_value").disabled=false;
$("#id_operation_value").show();
}
}