Skip to content

Commit

Permalink
Update consistencycheck.html
Browse files Browse the repository at this point in the history
  • Loading branch information
situx authored Dec 29, 2024
1 parent d584b0f commit 9b57056
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions consistencycheck.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ <h1>GeoSPARQL Standard Consistency Check</h1>
</table>
<script>
var standarddata={}
var thetable=null
function showResults(){
cat=document.getElementById("category").value
file=document.getElementById("file").value
Expand All @@ -31,11 +32,11 @@ <h1>GeoSPARQL Standard Consistency Check</h1>
}
document.getElementById("resulttablebody").innerHTML=reslist
if(first){
table = $("#resulttable").dataTable({"paging":true});
thetable = $("#resulttable").dataTable({"paging":true});
first=false
}else{
//$("#resulttable").DataTable().destroy();
table = $("#resulttable").dataTable({"paging":true});
thetable.DataTable().clear().destroy();
thetable = $("#resulttable").dataTable({"paging":true});
}
}
function loadFiles(){
Expand Down

0 comments on commit 9b57056

Please sign in to comment.