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.

Make Button visible/invisible
#8
(27.03.2017, 19:44)Erwin van der Zwart Wrote: Hi,

I would use option 2, add custom class 'hidebyknx' to your elements and try this custom JS code:

Code:
$(function(){
  grp.listen('1/1/1', function(object, state) {
     if (state == 'value' && object.value == true) {
        $(".hidebyknx").addClass("hide");
     } else if (state == 'value' && object.value == false) {
        $(".hidebyknx").removeClass("hide");
     }
  }, true); // set to true to respond on same value
});

BR,

Erwin

Hello Erwin:

Sometimes when I reload the page after inactivity for 20 or 30 seconds, or after several reloads of the page, the button is showed again even when the value  in object to hide is true. Is like the reload is not executing the javascript code, I have tested clearing the cache, but happening the same, even I have testing with (firefox, chrome, and explorer). Why it is happenning??? How can I fix it??

BR,


Roger
Reply


Messages In This Thread
Make Button visible/invisible - by forsterm - 27.03.2017, 16:29
RE: Make Button visible/invisible - by batistacaceres - 05.06.2018, 15:09
RE: Make Button visible/invisible - by cekca - 28.03.2017, 16:49
RE: Make Button visible/invisible - by JMM - 06.06.2018, 06:17
RE: Make Button visible/invisible - by admin - 06.06.2018, 06:32
RE: Make Button visible/invisible - by admin - 09.04.2019, 07:46
RE: Make Button visible/invisible - by Fahd - 07.02.2023, 07:56
RE: Make Button visible/invisible - by admin - 07.02.2023, 09:13

Forum Jump: