diff options
author | Vasilii Chernov <vchernov@inr.ru> | 2016-03-02 08:48:24 +0100 |
---|---|---|
committer | Vasilii Chernov <vchernov@inr.ru> | 2016-03-02 08:48:24 +0100 |
commit | 8eca0564a1dd6aac125086a244687b4813a1fd86 (patch) | |
tree | 462919b3c3a3ebe833b3b7215c5a9399e5da7f60 /pyserver/templates/registers/table_scripts.html | |
parent | 269b0985bd5830e27f6dedb04a05d76f52acb68c (diff) | |
parent | adc657ebcd01ecc2cc5f110453ef00dffde2d5c0 (diff) | |
download | pcitool-8eca0564a1dd6aac125086a244687b4813a1fd86.tar.gz pcitool-8eca0564a1dd6aac125086a244687b4813a1fd86.tar.bz2 pcitool-8eca0564a1dd6aac125086a244687b4813a1fd86.tar.xz pcitool-8eca0564a1dd6aac125086a244687b4813a1fd86.zip |
1. Merge with http://ufo.kit.edu/ufo/log/csa/pcitool 359 revision
2. Move api_server to html server
Diffstat (limited to 'pyserver/templates/registers/table_scripts.html')
-rw-r--r-- | pyserver/templates/registers/table_scripts.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/pyserver/templates/registers/table_scripts.html b/pyserver/templates/registers/table_scripts.html new file mode 100644 index 0000000..a772b9f --- /dev/null +++ b/pyserver/templates/registers/table_scripts.html @@ -0,0 +1,42 @@ +{% if standalone %} +<script src="{{ url_for('static', filename='codebase/dhtmlx.js') }}"></script> +<script src="{{ url_for('static', filename='check_err.js') }}"></script> +{% endif %} + +<script> + /* + $("#set_val_box").keyup(function(event){ + if(event.keyCode == 13){ + $("#set_val_button").click(); + } + }); + */ + + function updateRegister(bank, name) { + var pathToReadRegister = "{{ url_for('process_json_command', command = 'read_register') }}" + var completePath = pathToReadRegister + '?bank=' + bank + + '®=' + name + + $.getJSON(completePath, function(json){ + checkError(json) + $("#set_val_box_" + bank + "_" + name).val(json.value) + }) + } + + function writeRegister(bank, name) + { + var value = document.getElementById("set_val_box_" + bank + "_" + name).value; + if(value == "") + return + + var pathToReadRegister = "{{ url_for('process_json_command', command = 'write_register') }}" + var completePath = pathToReadRegister + '?bank=' + bank + + '®=' + name + '&value=' + value; + + $.getJSON(completePath, + function(json) { + checkError(json) + updateRegister(bank, name) + }) + }; +</script> |