I have an industrial control application that I want to put a web UI
on. I need some graphics to display the positions of machines as well
as standard text-based output like temperatures, distances etc. I was
thinking of using SVG+JavaScript to do this via AJAX/JSONRPC data from
the server.
Thanks for any tips.
Best,
Kyle
span.setHtml('xxxxxxxxxxxx')
div.setHtml('xxxxxxxxxxxx')
pane.setHtml('xxxxxxxxxxxx')
panel.setHtml('xxxxxxxxxxxx')
dialog.setHtml('xxxxxxxxxxxx')
...
2. Or, you can set html to any node as following:
div.
panel.getSubNode('PANEL').html('xxxxxxxxxxxxx');
Thanks for the tips.
Best,
Kyle
<object data="test.svg" width="500" height="500" type="image/svg
+xml">
<embed src="test.svg" width="500" height="500" type="image/svg+xml" /
>
</object>
Best,
Kyle
Thanks for the responses.
Best,
Kyle