Use clientside html simply to display.
Use the html with javascript to extract clientside cell data from opencalc file
the html also links to specific pages in clientside pdf files.
the pdf page linking is simple, But I'm having trouble accessing the cell data using javascript.
Code: Select all
<html>
<body>
<p id=cellinfo><p>
<script src = opencalcfile.ods>
<script>
var y = WhateverTheCodeIs(A1);
document.getElementById("cellinfo").innerHTML = y;
</script>
</html>