IncludeShowStat.txt 817 B

1234567891011121314151617181920212223242526272829
  1. <div id="container-syncstat"></div>
  2. <script type="text/javascript">
  3. $(function() {
  4. $("#container-syncstat").load("%SCRIPTURLPATH{"rest"}%/RenderPlugin/tag",
  5. { name: 'STATSYNC',
  6. host: '%FORMFIELD{"DeviceIP" topic="%BASETOPIC%"}%',
  7. dnsname: '%FORMFIELD{"DnsName" topic="%BASETOPIC%"}%',
  8. comment: '%FORMFIELD{"Description" topic="%BASETOPIC%"}%',
  9. wikiname: '%BASETOPIC%',
  10. topic: '%BASEWEB%.%BASETOPIC%',
  11. web: '%BASEWEB%',
  12. render: true }
  13. );
  14. });
  15. </script>
  16. <div id="container-showstat"></div>
  17. <script type="text/javascript">
  18. $(function() {
  19. $("#container-showstat").load("%SCRIPTURLPATH{"rest"}%/RenderPlugin/tag",
  20. { name: 'SHOWSTAT',
  21. host: '%FORMFIELD{"DeviceIP" topic="%BASETOPIC%"}%',
  22. topic: '%BASEWEB%.%BASETOPIC%',
  23. web: '%BASEWEB%',
  24. render: true }
  25. );
  26. });
  27. </script>