--- dao/DaoAdresseVedligehold/src/main/webapp/index.html 2016/01/31 21:56:30 2890 +++ dao/DaoAdresseVedligehold/src/main/webapp/index.html 2016/02/01 09:42:37 2901 @@ -42,15 +42,28 @@ html += "
"; html += "

" + entry.description + "

"; + html += "
"; html += entry.detail; if (entry.state == "STATE_ABORTED") html += "
" + entry.errorMessage + "
"; + + if (entry.state == "STATE_RUNNING") { + if (entry.percentCompleted >= 0) { + var percent = entry.percentCompleted.toFixed(2); + html += "
"; + html += "
" ; + html += percent + "%"; + html += "
"; + html += "
"; + } + } - html += "
" + entry.state + "
"; + html += "
" + entry.state + "
"; - html += "
"; + html += "
"; //panel-body + html += ""; //panel }); if (html == "") { @@ -112,7 +125,9 @@ } - $.get("rest/commands/distancecalculation/" + dist); + $.get("rest/commands/distancecalculation/" + dist, function() { + loadTasks(); //Force reload of tasks immediately + } ); });