Get the eWON tag Historical Logging in Customer Webpage - Printable Version +- Ewon Technical Forum (https://techforum.ewon.biz) +-- Forum: Development (https://techforum.ewon.biz/forum-50.html) +--- Forum: Custom Web Pages/viewON/Talk2M Visualization (https://techforum.ewon.biz/forum-55.html) +--- Thread: Get the eWON tag Historical Logging in Customer Webpage (/thread-966.html) |
Get the eWON tag Historical Logging in Customer Webpage - lixl - 05-07-2019 Dear everyone, I want get the tag Historical Logging from eWON ,i already got the tag table in my webpage by jQuery, i want get some cells in the table,what can i do? There is the part of code. <script type="text/javascript" src="jquery.js"></script> <script> function GetTable() { jQuery.ajax ( { url:"/usr/mytable.json.shtm", dataType:"text", success:TableReceived, error:TableError, timeout:10000 }); } function TableReceived(text) { document.getElementById("tagtable").innerHTML = text; setTimeout("GetTable()", 1000); } function TableError() { } GetTable(); </script> [font=Tahoma, sans-serif, Arial]"mytable.json.shtm" [/font] [font=Tahoma, sans-serif, Arial]<%#ParamSSI,[$dtHL$ftH$st_m1$et_m0$tnTag3]%>[/font] |