This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

New widgets
#17
(28.05.2025, 10:42)admin Wrote: Example of how to enable/disable certain elements depending on a group address value.

Add enable-by-0_0_1 to Appearance - Additional classes for relevant elements.

CSS:
Code:
.user-view .enable-by-0_0_1 {
  pointer-events: none;
  opacity: 0.5;
}

.on-0_0_1 .user-view .enable-by-0_0_1 {
  pointer-events: all;
  opacity: 1;
}

JS:
Code:
localbus.listen('object', '0/0/1', (value) => {
  document.body.classList.toggle('on-0_0_1', value)
})

I am not familiar with this coding, so sorry for my inorance.
Will that act as Enable/Disable on the objects used?
Can we also change the color of the objects? (i.e. grey for disabled, red for enabled)
Reply


Messages In This Thread
New widgets - by Daniel - 05.02.2025, 09:00
RE: New widgets - by AlexLV - 05.02.2025, 20:14
RE: New widgets - by Daniel - 06.02.2025, 09:47
RE: New widgets - by CristianAgata - 06.02.2025, 20:15
RE: New widgets - by Rune - 07.02.2025, 08:05
RE: New widgets - by AlexLV - 12.02.2025, 19:21
RE: New widgets - by Fahd - 19.02.2025, 19:52
RE: New widgets - by Frank68 - 21.03.2025, 12:20
RE: New widgets - by Daniel - 21.03.2025, 12:23
RE: New widgets - by maxmp - 22.03.2025, 11:30
RE: New widgets - by admin - 24.03.2025, 09:11
RE: New widgets - by Chandrias - 30.03.2025, 17:25
RE: New widgets - by Chandrias - 23.05.2025, 04:36
RE: New widgets - by Chandrias - 25.05.2025, 16:18
RE: New widgets - by admin - 26.05.2025, 12:38
RE: New widgets - by admin - 28.05.2025, 10:42
RE: New widgets - by Chandrias - 29.05.2025, 08:11
RE: New widgets - by Daniel - 29.05.2025, 09:48
RE: New widgets - by Chandrias - 29.05.2025, 11:35
RE: New widgets - by Daniel - 29.05.2025, 11:41
RE: New widgets - by Chandrias - 04.09.2025, 18:21
RE: New widgets - by admin - 08.10.2025, 08:43

Forum Jump: