01.04.2026, 09:24
Is it possible to display the RTC inside the LM in Visu?
|
Realtime Clock
|
|
01.04.2026, 09:24
Is it possible to display the RTC inside the LM in Visu?
02.04.2026, 11:04
Custom JavaScript example that adds current time near the close button. Header option must be enabled in General settings for this to work in Plan view.
Code: const el = document.querySelector('.navbar > .container-fluid > div:last-child')
09.04.2026, 13:07
After implementing the time via JS the main title is shifted to the left, can this be resolved?
09.04.2026, 13:20
Try this:
Code: const el = document.querySelector('.navbar > .container-fluid > div:last-child')
09.04.2026, 17:28
Hi,
is possible provide Custom JavaScript for Tile View also? Alex
09.04.2026, 19:36
(09.04.2026, 17:28)AlexLV Wrote: Hi, It works in Tile view as well. If you want 24 hour format and date here is an example Code: const el = document.querySelector('.navbar > .container-fluid > div:last-child')
10.04.2026, 06:59
If you only want time in 24H format without seconds:
Code: span.textContent = date.toTimeString().substring(0, 5) |
|
« Next Oldest | Next Newest »
|