Page 1 of 1

Extracting Cell Data

Posted: Tue Aug 08, 2017 11:31 am
by silvestro673
What I'm trying to do:

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>
i'm tired, there must be a way. I know my way is wrong. Just tell me the right way. I want to keep this all clientside. I simply want cell A1 to display in html.