go-lsst / fcs-lpc-motor-ctl

A html5 application using the github.com/go-lsst/ncs control system to control the m702 motors.
BSD 3-Clause "New" or "Revised" License
2 stars 1 forks source link

gui: add expert-panel command log #18

Open sbinet opened 8 years ago

sbinet commented 8 years ago

https://elements.polymer-project.org/elements/iron-list or just a readonly textarea: http://www.w3schools.com/tags/tag_textarea.asp

or, alternatively:

<div id="command-log" style="height: 150px; overflow: scroll"></div>

together with:

var node = doc.getElementByID("command-log");
node.innerHTML += "<br>other data";
node.scrollTop = node.scrollHeight;